Justified Alignment in UITextView - iPhone

后端 未结 6 1469
名媛妹妹
名媛妹妹 2020-12-03 02:54

In my application, i have a UITextView with many lines, but I need the data with proper appearance.

Is it possible to have Justified Alignment in

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 03:35

    I know it's an old question but now we have news about :

    UITextView *textView = // init your text view
    textView.textAlignment = NSTextAlignmentJustified;
    

    And that's it !

    UPDATE: This only works on iOS 6 and above

提交回复
热议问题