2016-07-01 7 views

답변

1

슬프게도 IB에는 아무것도 없습니다. 그래서 당신은 코드에서 수행해야합니다

여기
let paragraphStyle = NSMutableParagraphStyle() 
    paragraphStyle.firstLineHeadIndent = 20.0 

    checkButton.attributedTitle = NSAttributedString(string: checkButton.title, attributes: [NSParagraphStyleAttributeName : paragraphStyle]) 

는 그 다음 보는 방법 :

enter image description here

+0

감사합니다, 매력처럼 작동합니다! :) –