标签:sdn http 换行 init ott log text 文本 功能
在iOS中。比較偷懒的一种做法。实现文本的多行输入。而且带有自己主动换行的功能,能够用UITextView来比較偷懒的实现。
实现代码就比較简单:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 100, 100, 40)];
textView.layer.cornerRadius = 5;
textView.layer.masksToBounds = YES;
[self.view addSubview:textView];
这样实现出来尽管是投机取巧。可是效果还能够。实现的效果例如以下:
标签:sdn http 换行 init ott log text 文本 功能
原文地址:http://www.cnblogs.com/ljbguanli/p/6985004.html