1、UITextView 如何设置行间距?

@interface UITextView ()
- (id)styleString; // make compiler happy
@end

@interface MBTextView : UITextView
@end
@implementation MBTextView
- (id)styleString {
    return [[super styleString] stringByAppendingString:@"; line-height: 1.2em"];
}
@end

【每日技术点】 13.12.10

效果图如上。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-19
  • 2021-11-21
  • 2021-09-27
  • 2022-12-23
  • 2021-08-13
  • 2021-07-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
相关资源
相似解决方案