- (IBAction)changeText:(id)sender {
創(chuàng)新互聯公司-專業(yè)網站定制、快速模板網站建設、高性價比黎城網站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式黎城網站制作公司更省心,省錢,快速模板網站建設找我們,業(yè)務覆蓋黎城地區(qū)。費用合理售后完善,10多年實體公司更值得信賴。
NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
paragraphStyle.alignment = NSTextAlignmentCenter;
paragraphStyle.paragraphSpacing = 12.0f;
NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
attributes[NSParagraphStyleAttributeName] = paragraphStyle;
attributes[NSFontAttributeName] = [UIFont fontWithName:@"Futura" size:20.0f];
attributes[NSForegroundColorAttributeName] = [UIColor colorWithRed:1.0f green:0 blue:0 alpha:1.0f];
NSAttributedString *attriStr = [[NSAttributedString alloc] initWithString:self.mytextView.text attributes:attributes];
self.mytextView.attributedText = attriStr;
}