두 줄의 텍스트로 UIButton을 만들 수 있는지 궁금합니다. 다른 글꼴 크기를 가지려면 각 줄이 필요합니다. 첫 번째 라인은 17 포인트가되고 두 번째 라인은 11 포인트가됩니다. UIButton 내부에 두 개의 레이블을 넣는 것을 엉망으로 만들었지 만 단추 경계 안에 머물도록 만들 수 없습니다.
프로그래밍 방식이 아닌 UI 빌더에서이 모든 작업을 수행하려고합니다.
감사
답변
두 가지 질문이 있습니다.
두 줄의 텍스트로 UIButton을 만들 수 있는지 궁금합니다.
이것은 스토리 보드를 사용하거나 프로그래밍 방식으로 가능합니다.
스토리 보드 :
에 ‘줄 바꿈 모드’로 변경 문자 랩 또는 줄 바꿈을 하고 사용 Alt 키 / 옵션 + 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)
//applying the line break mode
textResponseButton?.titleLabel?.lineBreakMode = NSLineBreakMode.byWordWrapping;
let buttonText: NSString = "hello\nthere"
//getting the range to separate the button title strings
let newlineRange: NSRange = buttonText.range(of: "\n")
//getting both substrings
var substring1 = ""
var substring2 = ""
if(newlineRange.location != NSNotFound) {
substring1 = buttonText.substring(to: newlineRange.location)
substring2 = buttonText.substring(from: newlineRange.location)
}
//assigning diffrent fonts to both substrings
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)
//appending both attributed strings
attrString1.append(attrString2)
//assigning the resultant attributed strings to the button
textResponseButton?.setAttributedTitle(attrString1, for: [])
}
이전 Swift
@IBOutlet weak var btnTwoLine: UIButton?
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
//applying the line break mode
btnTwoLine?.titleLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping;
var buttonText: NSString = "hello\nthere"
//getting the range to separate the button title strings
var newlineRange: NSRange = buttonText.rangeOfString("\n")
//getting both substrings
var substring1: NSString = ""
var substring2: NSString = ""
if(newlineRange.location != NSNotFound) {
substring1 = buttonText.substringToIndex(newlineRange.location)
substring2 = buttonText.substringFromIndex(newlineRange.location)
}
//assigning diffrent fonts to both substrings
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])
//appending both attributed strings
attrString.appendAttributedString(attrString1)
//assigning the resultant attributed strings to the button
btnTwoLine?.setAttributedTitle(attrString, forState: UIControlState.Normal)
}
산출
답변
두 가지 다른 글꼴 크기가 필요하지 않다는 점을 제외하면 거의 동일한 주제를 찾고있었습니다. 누군가가 간단한 해결책을 찾고있는 경우 :
let button = UIButton()
button.titleLabel?.numberOfLines = 0
button.titleLabel?.lineBreakMode = .byWordWrapping
button.setTitle("Foo\nBar", for: .normal)
button.titleLabel?.textAlignment = .center
button.sizeToFit()
button.addTarget(self, action: #selector(rightBarButtonTapped), for: .allEvents)
navigationItem.rightBarButtonItem = UIBarButtonItem(customView: button)
답변
대부분의 솔루션에서 줄 바꿈 모드를 “문자 줄 바꿈”으로 만드는 동안 두 번째 줄이 첫 번째 줄에 정렬되는 문제를 발견했습니다.
모든 선을 중앙에 배치합니다. 제목을 Plain에서 Attributed로 변경 한 다음 각 줄을 가운데로 만들 수 있습니다.
답변
줄 바꿈을 문자 줄 바꿈으로 변경하고 버튼을 선택하고 속성 관리자에서 줄 바꿈으로 이동하여 문자 줄 바꿈으로 변경하십시오.
답변
SWIFT 3 구문
let str = NSMutableAttributedString(string: "First line\nSecond Line")
str.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 17), range: NSMakeRange(0, 10))
str.addAttribute(NSFontAttributeName, value: UIFont.systemFont(ofSize: 12), range: NSMakeRange(11, 11))
button.setAttributedTitle(str, for: .normal)
답변
나는 이것을 고쳤고 내 솔루션은 Storyboard에만있었습니다.
변경 사항 :
이 글은 추가 신원 관리자 -> 사용자 정의 런타임 속성 (이 KeyPaths) :
- numberOfLines = 2
- titleLabel.textAlignment = 1
속성 관리자에 이것을 추가했습니다.
- 줄 바꿈 = 줄 바꿈
답변
이 중 일부를 코드에서 수행해야합니다. IB에서는 2 개의 다른 글꼴을 설정할 수 없습니다. 줄 바꿈 모드를 문자 줄 바꿈으로 변경하는 것 외에도 제목을 설정하려면 다음과 같은 것이 필요합니다.
override func viewDidLoad() {
super.viewDidLoad()
var str = NSMutableAttributedString(string: "First line\nSecond Line")
str.addAttribute(NSFontAttributeName, value: UIFont.systemFontOfSize(17), range: NSMakeRange(0, 10))
str.addAttribute(NSFontAttributeName, value: UIFont.systemFontOfSize(12), range: NSMakeRange(11, 11))
button.setAttributedTitle(str, forState: .Normal)
}