มีคำถามสองข้อ
ฉันสงสัยว่าเป็นไปได้ไหมที่จะสร้าง UIButton ที่มีข้อความสองบรรทัด
สามารถทำได้โดยใช้สตอรีบอร์ดหรือโดยใช้โปรแกรม
สตอรี่บอร์ด:
เปลี่ยน 'Line Break Mode' เป็นCharacter WrapหรือWord Wrapและใช้ปุ่ม Alt / Option + Enterเพื่อป้อนบรรทัดใหม่ในฟิลด์ชื่อของ UIButton
โดยทางโปรแกรม:
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
btnTwoLine?.titleLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping;
}
ฉันต้องการให้แต่ละบรรทัดมีขนาดตัวอักษรที่แตกต่างกัน 1
กรณีที่เลวร้ายที่สุดคือคุณสามารถใช้UIButton
คลาสที่กำหนดเองและเพิ่มป้ายกำกับสองป้ายภายในได้
วิธีที่ดีกว่าคือใช้ประโยชน์จากNSMutableAttributedString
ไฟล์. โปรดทราบว่าสิ่งนี้สามารถทำได้โดยใช้โปรแกรมเท่านั้น
สวิฟต์ 5:
@IBOutlet weak var btnTwoLine: UIButton?
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
textResponseButton?.titleLabel?.lineBreakMode = NSLineBreakMode.byWordWrapping;
let buttonText: NSString = "hello\nthere"
let newlineRange: NSRange = buttonText.range(of: "\n")
var substring1 = ""
var substring2 = ""
if(newlineRange.location != NSNotFound) {
substring1 = buttonText.substring(to: newlineRange.location)
substring2 = buttonText.substring(from: newlineRange.location)
}
let font1: UIFont = UIFont(name: "Arial", size: 17.0)!
let attributes1 = [NSMutableAttributedString.Key.font: font1]
let attrString1 = NSMutableAttributedString(string: substring1, attributes: attributes1)
let font2: UIFont = UIFont(name: "Arial", size: 11.0)!
let attributes2 = [NSMutableAttributedString.Key.font: font2]
let attrString2 = NSMutableAttributedString(string: substring2, attributes: attributes2)
attrString1.append(attrString2)
textResponseButton?.setAttributedTitle(attrString1, for: [])
}
Swift รุ่นเก่า
@IBOutlet weak var btnTwoLine: UIButton?
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
btnTwoLine?.titleLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping;
var buttonText: NSString = "hello\nthere"
var newlineRange: NSRange = buttonText.rangeOfString("\n")
var substring1: NSString = ""
var substring2: NSString = ""
if(newlineRange.location != NSNotFound) {
substring1 = buttonText.substringToIndex(newlineRange.location)
substring2 = buttonText.substringFromIndex(newlineRange.location)
}
let font:UIFont? = UIFont(name: "Arial", size: 17.0)
let attrString = NSMutableAttributedString(
string: substring1 as String,
attributes: NSDictionary(
object: font!,
forKey: NSFontAttributeName) as [NSObject : AnyObject])
let font1:UIFont? = UIFont(name: "Arial", size: 11.0)
let attrString1 = NSMutableAttributedString(
string: substring2 as String,
attributes: NSDictionary(
object: font1!,
forKey: NSFontAttributeName) as [NSObject : AnyObject])
attrString.appendAttributedString(attrString1)
btnTwoLine?.setAttributedTitle(attrString, forState: UIControlState.Normal)
}
เอาต์พุต