在UITextView中格式化文本

Shr*_*dha 14 objective-c uitextview ios

我正在为我的应用程序制作一个"关于页面",我必须在该页面上粘贴大量文本(文本将无法编辑).

我正在使用一个UITextView用于此目的.但是,我需要一些粗体字(如标题).但我无法实现它.该UITextView删除我的所有格式.

我没有在这里显示的代码,因为我只在IB中粘贴我的所有文本.

有没有解决办法?例如..我希望标题以粗体显示..

" 关于ABC公司

gkskgsagdfgfskgfjkgfgljdgsfjgdsjfgdjlsgflgdslgfljdsgfljgdsjlgfljdsgfljdgslfgls.
jdfjkhdsjlfhdlsfhkldshfkldshflkdhlkfhdklsfhlksdhflkdshflkhdsflkhsdklfhlksdhflkshf

fjhdshfkldshfkldhsfklhdsklfhlkdshfklhdsklfhdklsfhkdshfklhdsklfhklsdfhkldshfkhdsklf

fhjdgfkdgsjkfgjkdsgfjkdsgjfgjdkgfjgsjdfgjkdsgfjkgsdjkfgjsdgfjgsdjkfgjksdgfjkgskjfgs"
Run Code Online (Sandbox Code Playgroud)

Nay*_*yan 11

首先将文本属性保留textView为' Attributed',之后只需选择文本并根据需要更改其样式和字体.

PS - 您必须在IB的属性检查器面板中执行此操作.

编辑:

有关更多信息,请访问此链接.

此外,这是非常好的主要是当textField有一个不会改变的文本,例如 - 如关于信息.当这个文本直接插入IB而不是分配文本programmaticaly.


小智 5

您可以使用NSAttributedString,设置文本字体,前景和背景颜色,StrikeThrough以及阴影等.

归因字符串在字符及其属性之间建立关联.像NSString对象一样,有两种变体,NSAttributedStringNSMutableAttributedString.虽然iOS支持的属性字符串的早期版本,但直到iOS 6按钮,标签,文本字段和textview等控件定义了一个属性来管理属性.属性应用于一系列字符,因此您可以例如strikethrough为字符串的一部分设置属性.同样重要的是要注意,属性字符串对象的默认字体是Helvetica 12-point.如果为整个字符串以外的范围设置font属性,请记住这一点.可以使用属性字符串设置以下属性:

NSString *const NSFontAttributeName;
NSString *const NSParagraphStyleAttributeName;
NSString *const NSForegroundColorAttributeName;
NSString *const NSBackgroundColorAttributeName; 
NSString *const NSLigatureAttributeName;
NSString *const NSKernAttributeName;
NSString *const NSStrikethroughStyleAttributeName;
NSString *const NSUnderlineStyleAttributeName; 
NSString *const NSStrokeColorAttributeName;
NSString *const NSStrokeWidthAttributeName;
NSString *const NSShadowAttributeName; 
NSString *const NSVerticalGlyphFormAttributeName;



 // Create attributed string
 NSString *str = @"example for underline \nexample for font \nexample for bold \nexample for italics"; 

 NSMutableAttributedString *attributedString =
 [[NSMutableAttributedString alloc] initWithString:str];

 // Add attribute NSUnderlineStyleAttributeName 
 [attributedString addAttribute:NSUnderlineStyleAttributeName 
                   value:[NSNumber numberWithInt:NSUnderlineStyleSingle] 
                   range:NSMakeRange(12, 9)];
 [attributedString addAttribute:NSUnderlineStyleAttributeName
                   value:[NSNumber numberWithInt:NSUnderlineStyleSingle]
                   range:NSMakeRange(12, 9)];

 // Set background color for entire range
 [attributedString addAttribute:NSBackgroundColorAttributeName
                   value:[UIColor yellowColor]
                   range:NSMakeRange(0, [attributedString length])];


 // Create NSMutableParagraphStyle object
 NSMutableParagraphStyle *paragraph = [[NSMutableParagraphStyle alloc] init];
 paragraph.alignment = NSTextAlignmentCenter;

 // Add attribute NSParagraphStyleAttributeName
 [attributedString addAttribute:NSParagraphStyleAttributeName 
                   value:paragraph
                   range:NSMakeRange(0, [attributedString length])];



 // Set font, notice the range is for the whole string
 UIFont *font = [UIFont fontWithName:@"Helvetica" size:18]; 
 [attributedString addAttribute:NSFontAttributeName 
                   value:font
                   range:NSMakeRange(35, 4)];



 // Set font, notice the range is for the whole string
 UIFont *fontBold = [UIFont fontWithName:@"Helvetica-Bold" size:18];
 [attributedString addAttribute:NSFontAttributeName 
                   value:fontBold 
                   range:NSMakeRange(53, 4)];

 // Set font, notice the range is for the whole string 
 UIFont *fontItalics = [UIFont fontWithName:@"Helvetica-Oblique" size:18];
 [attributedString addAttribute:NSFontAttributeName 
                   value:fontItalics
                   range:NSMakeRange(71, 7)];



 // Set label text to attributed string
 [self.mytextView setAttributedText:attributedString];
Run Code Online (Sandbox Code Playgroud)