UITextView的注意点

来源:互联网 发布:看足球赛的软件 编辑:程序博客网 时间:2024/04/28 21:12

cell.label.text=@"会议介绍";

            cell.text.text=@"2015年,德州仪器为推动中国创新半导体技术的发展,帮助工程师提高生产力并激发新设计。特邀请国内顶尖专家在全国举办技术培训研讨会,与您分享最新的研发案例和堵门设计技巧,为您提供最前沿的积水昂街和深度剖析没在培训中,阿三搜索空间打开手机,雪大这么多时间多久,准确把握任意时刻电源变压器的工作状态。";

            [cell.textsetTextColor:[UIColorlightGrayColor]];

            

            [cell.textsetBackgroundColor:[UIColorclearColor]];

            [cell.text setEditable:NO];

            NSMutableParagraphStyle *style=[[NSMutableParagraphStylealloc]init];

            style.lineSpacing=10.0;

            style.firstLineHeadIndent=28.0;

            NSDictionary *att=@{NSFontAttributeName:[UIFontsystemFontOfSize:14],NSParagraphStyleAttributeName: style};

            cell.text.attributedText=[[NSAttributedStringalloc]initWithString:cell.text.textattributes:att];

            cell.text.autoresizesSubviews=YES;

0 0