textfield首行縮進

#pragma mark - UITextView delegate Methods
-(void)textViewDidChange:(UITextView *)textView{
    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
          paragraphStyle.lineSpacing = 30;    //行間距
          paragraphStyle.maximumLineHeight = 60;   /**最大行高*/
          paragraphStyle.firstLineHeadIndent = 20.f;    /**首行縮進寬度*/
          paragraphStyle.alignment = NSTextAlignmentJustified;
    NSDictionary *attributes = @{
                                 NSFontAttributeName:[UIFont systemFontOfSize:15],
                                 NSParagraphStyleAttributeName:paragraphStyle
                                 };
    textView.attributedText = [[NSAttributedString alloc] initWithString:textView.text attributes:attributes];
}ci

相關文章
相關標籤/搜索