#import "ViewController.h" #import <CoreText/CoreText.h> @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; //学习内容 /* 1.控件 UIView UILabel UITextField UITextView UIButton 2.字体、大小、单位、颜色 */ UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 30, 300, 260)]; label.text = @"Label Text Content, This is a text label things attribute";//默认为空 label.font = [UIFont systemFontOfSize:17];//默认使用系统的17 label.textColor = [UIColor orangeColor];//默认使用文本黑色 label.shadowColor = [UIColor lightGrayColor];//默认没有阴影 label.shadowOffset = CGSizeMake(1,0);//默认是一个向上的阴影(0,-1) label.textAlignment = NSTextAlignmentCenter;//默认是左对齐 label.lineBreakMode = NSLineBreakByTruncatingTail;//段落样式,默认是最后截断尾巴,用...代替 //富文本的基本数据类型,属性字符串。以此为基础,如果这个设置了相应的属性,则会忽略上面设置的属性,默认为空 NSString *string = label.text; const CGFloat fontSize = 16.0; NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:string]; NSUInteger length = [string length]; //设置字体 UIFont *baseFont = [UIFont systemFontOfSize:fontSize]; [attrString addAttribute:NSFontAttributeName value:baseFont range:NSMakeRange(0, length)];//设置所有的字体 UIFont *boldFont = [UIFont boldSystemFontOfSize:fontSize]; [attrString addAttribute:NSFontAttributeName value:boldFont range:[string rangeOfString:@"Text"]];//设置Text这四个字母的字体为粗体 //设置倾斜,需要导入coreText UIFont *italicFont = GetVariationOfFontWithTrait(baseFont, kCTFontTraitItalic); [attrString addAttribute:NSFontAttributeName value:italicFont range:[string rangeOfString:@"Label"]]; // 设置颜色 UIColor *color = [UIColor redColor]; [attrString addAttribute:NSForegroundColorAttributeName value:color range:[string rangeOfString:@"Content"]]; [attrString addAttribute:NSBackgroundColorAttributeName value:[UIColor blueColor] range:[string rangeOfString:@"ent"]]; //可以对这些属性设置值 //字体名称有以下: // label.font = [UIFont fontWithName:@"Arial-BoldItalicMT" size:24]; [attrString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Verdana-BoldItalic" size:18] range:[string rangeOfString:@"Label"]]; label.numberOfLines = 2; NSMutableParagraphStyle * style = [[NSParagraphStyle defaultParagraphStyle] mutableCopy]; style.lineSpacing = 10;//增加行高 style.headIndent = 10;//头部缩进,相当于左padding style.tailIndent = -10;//相当于右padding style.lineHeightMultiple = 1.5;//行间距是多少倍 style.alignment = NSTextAlignmentLeft;//对齐方式 style.firstLineHeadIndent = 20;//首行头缩进 style.paragraphSpacing = 10;//段落后面的间距 style.paragraphSpacingBefore = 20;//段落之前的间距 [attrString addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(0, length)]; [attrString addAttribute:NSKernAttributeName value:@2 range:NSMakeRange(0, length)];//字符间距 2pt [attrString addAttribute:NSStrokeColorAttributeName value:[UIColor blueColor] range:[string rangeOfString:@"is"]];//设置文字描边颜色,需要和NSStrokeWidthAttributeName设置描边宽度,这样就能使文字空心 [attrString addAttribute:NSStrokeWidthAttributeName value:@2 range:[string rangeOfString:@"is"]];//空心字,文字边框描述 [attrString addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:[string rangeOfString:@"text"]];//下划线 [attrString addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleThick) range:[string rangeOfString:@"label"]];//厚的下划线 [attrString addAttribute:NSStrikethroughStyleAttributeName value:@(NSUnderlinePatternSolid | NSUnderlineStyleSingle) range:[string rangeOfString:@"things"]];//删除线 [attrString addAttribute:NSStrikethroughColorAttributeName value:[UIColor blueColor] range:[string rangeOfString:@"things"]];//删除线蓝色 label.attributedText = attrString; label.highlightedTextColor = [UIColor redColor];//设置文本高亮显示颜色,与highlighted一起使用。 label.highlighted = NO; //高亮状态是否打开 label.enabled = YES;//设置文字内容是否可变 label.userInteractionEnabled = YES;//设置标签是否忽略或移除用户交互。默认为NO label.baselineAdjustment = UIBaselineAdjustmentNone;//如果adjustsFontSizeToFitWidth属性设置为YES,这个属性就来控制文本基线的行为。 // UIBaselineAdjustmentAlignBaselines=0,默认,文本最上端与中线对齐。 // UIBaselineAdjustmentAlignCenters, 文本中线与label中线对齐。 // UIBaselineAdjustmentNone, 文本最低端与label中线对齐。; [self.view addSubview:label]; /* 字体名如下: Font Family: American Typewriter Font: AmericanTypewriter Font: AmericanTypewriter-Bold Font Family: AppleGothic Font: AppleGothic Font Family: Arial Font: ArialMT Font: Arial-BoldMT Font: Arial-BoldItalicMT Font: Arial-ItalicMT Font Family: Arial Rounded MT Bold Font: ArialRoundedMTBold Font Family: Arial Unicode MS Font: ArialUnicodeMS Font Family: Courier Font: Courier Font: Courier-BoldOblique Font: Courier-Oblique Font: Courier-Bold Font Family: Courier New Font: CourierNewPS-BoldMT Font: CourierNewPS-ItalicMT Font: CourierNewPS-BoldItalicMT Font: CourierNewPSMT Font Family: DB LCD Temp Font: DBLCDTempBlack Font Family: Georgia Font: Georgia-Bold Font: Georgia Font: Georgia-BoldItalic Font: Georgia-Italic Font Family: Helvetica Font: Helvetica-Oblique Font: Helvetica-BoldOblique Font: Helvetica Font: Helvetica-Bold Font Family: Helvetica Neue Font: HelveticaNeue Font: HelveticaNeue-Bold Font Family: Hiragino Kaku Gothic **** W3 Font: HiraKakuProN-W3 Font Family: Hiragino Kaku Gothic **** W6 Font: HiraKakuProN-W6 Font Family: Marker Felt Font: MarkerFelt-Thin Font Family: STHeiti J Font: STHeitiJ-Medium Font: STHeitiJ-Light Font Family: STHeiti K Font: STHeitiK-Medium Font: STHeitiK-Light Font Family: STHeiti SC Font: STHeitiSC-Medium Font: STHeitiSC-Light Font Family: STHeiti TC Font: STHeitiTC-Light Font: STHeitiTC-Medium Font Family: Times New Roman Font: TimesNewRomanPSMT Font: TimesNewRomanPS-BoldMT Font: TimesNewRomanPS-BoldItalicMT Font: TimesNewRomanPS-ItalicMT Font Family: Trebuchet MS Font: TrebuchetMS-Italic Font: TrebuchetMS Font: Trebuchet-BoldItalic Font: TrebuchetMS-Bold Font Family: Verdana Font: Verdana-Bold Font: Verdana-BoldItalic Font: Verdana Font: Verdana-Italic Font Family: Zapfino Font: Zapfino */ //文本对齐方式 /* Values for NSTextAlignment */ /* NSTextAlignmentLeft 左对齐 NSTextAlignmentCenter 剧中对齐 NSTextAlignmentRight 右对齐 NSTextAlignmentJustified 两端对齐 NSTextAlignmentNatural 根据显示的文字特性对齐 */ //段落样式 /* lineSpacing; 来增加行距 paragraphSpacing; alignment; 对齐 firstLineHeadIndent; 段落开始的缩排像素 headIndent; 可调整全部文字的缩排距离,可当作左边 padding 使用 tailIndent; 可调整文字尾端的缩排距离。需要注意的是,这里指定的值可以当作文字显示的宽、而也可当作右边 padding 使用,依据输入的正负值而定: lineBreakMode; minimumLineHeight; maximumLineHeight; 而针对不同的字型与字号,我们可以透过指定最大与最小行距(maximumLineHeight 与 minimumLineHeight)来避免过高或过窄的状况发生。 baseWritingDirection; lineHeightMultiple; 想要调整行距,可以透过搭配使用 lineHeightMultiple 更改行距倍数 paragraphSpacingBefore; 而若是文章内容有分段落的话,也可以透过指定段落结尾距离(paragraphSpacing)以及段落开头距离(paragraphSpacingBefore): hyphenationFactor; @property(readwrite,copy,NS_NONATOMIC_IOSONLY) NSArray *tabStops NS_AVAILABLE_IOS(7_0); @property(readwrite,NS_NONATOMIC_IOSONLY) CGFloat defaultTabInterval NS_AVAILABLE_IOS(7_0); */ /* Predefined character attributes for text. If the key is not in the dictionary, then use the default values as described below. //预定义的文本属性值,如果键不是一个字典,那么使用默认的值作为以下描述 NSFontAttributeName 字体 默认是Helvetica 12号 NSParagraphStyleAttributeName 段落样式 */ /* UIKIT_EXTERN NSString *const NS_AVAILABLE_IOS(6_0); // NSParagraphStyle, default defaultParagraphStyle UIKIT_EXTERN NSString *const NSForegroundColorAttributeName NS_AVAILABLE_IOS(6_0); // UIColor, default blackColor UIKIT_EXTERN NSString *const NSBackgroundColorAttributeName NS_AVAILABLE_IOS(6_0); // UIColor, default nil: no background UIKIT_EXTERN NSString *const NSLigatureAttributeName NS_AVAILABLE_IOS(6_0); // NSNumber containing integer, default 1: default ligatures, 0: no ligatures UIKIT_EXTERN NSString *const NSKernAttributeName NS_AVAILABLE_IOS(6_0); // NSNumber containing floating point value, in points; amount to modify default kerning. 0 means kerning is disabled. (note: values other than nil and 0 are unsupported on iOS) UIKIT_EXTERN NSString *const NSStrikethroughStyleAttributeName NS_AVAILABLE_IOS(6_0); // NSNumber containing integer, default 0: no strikethrough UIKIT_EXTERN NSString *const NSUnderlineStyleAttributeName NS_AVAILABLE_IOS(6_0); // NSNumber containing integer, default 0: no underline UIKIT_EXTERN NSString *const NSStrokeColorAttributeName NS_AVAILABLE_IOS(6_0); // UIColor, default nil: same as foreground color UIKIT_EXTERN NSString *const NSStrokeWidthAttributeName NS_AVAILABLE_IOS(6_0); // NSNumber containing floating point value, in percent of font point size, default 0: no stroke; positive for stroke alone, negative for stroke and fill (a typical value for outlined text would be 3.0) UIKIT_EXTERN NSString *const NSShadowAttributeName NS_AVAILABLE_IOS(6_0); // NSShadow, default nil: no shadow UIKIT_EXTERN NSString *const NSTextEffectAttributeName NS_AVAILABLE_IOS(7_0); // NSString, default nil: no text effect UIKIT_EXTERN NSString *const NSAttachmentAttributeName NS_AVAILABLE_IOS(7_0); // NSTextAttachment, default nil UIKIT_EXTERN NSString *const NSLinkAttributeName NS_AVAILABLE_IOS(7_0); // NSURL (preferred) or NSString UIKIT_EXTERN NSString *const NSBaselineOffsetAttributeName NS_AVAILABLE_IOS(7_0); // NSNumber containing floating point value, in points; offset from baseline, default 0 UIKIT_EXTERN NSString *const NSUnderlineColorAttributeName NS_AVAILABLE_IOS(7_0); // UIColor, default nil: same as foreground color UIKIT_EXTERN NSString *const NSStrikethroughColorAttributeName NS_AVAILABLE_IOS(7_0); // UIColor, default nil: same as foreground color UIKIT_EXTERN NSString *const NSObliquenessAttributeName NS_AVAILABLE_IOS(7_0); // NSNumber containing floating point value; skew to be applied to glyphs, default 0: no skew UIKIT_EXTERN NSString *const NSExpansionAttributeName NS_AVAILABLE_IOS(7_0); // NSNumber containing floating point value; log of expansion factor to be applied to glyphs, default 0: no expansion UIKIT_EXTERN NSString *const NSWritingDirectionAttributeName NS_AVAILABLE_IOS(7_0); // NSArray of NSNumbers representing the nested levels of writing direction overrides as defined by Unicode LRE, RLE, LRO, and RLO characters. The control characters can be obtained by masking NSWritingDirection and NSTextWritingDirection values. LRE: NSWritingDirectionLeftToRight|NSTextWritingDirectionEmbedding, RLE: NSWritingDirectionRightToLeft|NSTextWritingDirectionEmbedding, LRO: NSWritingDirectionLeftToRight|NSTextWritingDirectionOverride, RLO: NSWritingDirectionRightToLeft|NSTextWritingDirectionOverride, UIKIT_EXTERN NSString *const NSVerticalGlyphFormAttributeName NS_AVAILABLE_IOS(6_0); // An NSNumber containing an integer value. 0 means horizontal text. 1 indicates vertical text. If not specified, it could follow higher-level vertical orientation settings. Currently on iOS, it's always horizontal. The behavior for any other value is undefined. */ // NSParagraphStyle 段落样式 // typedef NS_ENUM(NSInteger, NSLineBreakMode) { /* What to do with long lines */ //对于长内容或多行内容的处理方式 // NSLineBreakByWordWrapping = 0, /* Wrap at word boundaries, default */ //按包含单词为界限截断 // NSLineBreakByCharWrapping, /* Wrap at character boundaries */ //按字符为界限截断 // NSLineBreakByClipping, /* Simply clip */ //简单的修剪 // NSLineBreakByTruncatingHead, /* Truncate at head of line: "...wxyz" */ //截断头部 // NSLineBreakByTruncatingTail, /* Truncate at tail of line: "abcd..." */ //截断尾巴 // NSLineBreakByTruncatingMiddle /* Truncate middle of line: "ab...yz" */ //截断中间 // } NS_ENUM_AVAILABLE_IOS(6_0); } //获取斜体 UIFont * GetVariationOfFontWithTrait(UIFont *baseFont, CTFontSymbolicTraits trait) { CGFloat fontSize = [baseFont pointSize]; CFStringRef baseFontName = (__bridge CFStringRef)[baseFont fontName]; CTFontRef baseCTFont = CTFontCreateWithName(baseFontName, fontSize, NULL); CTFontRef ctFont = CTFontCreateCopyWithSymbolicTraits(baseCTFont, 0, NULL, trait, trait); NSString *variantFontName = CFBridgingRelease(CTFontCopyName(ctFont, kCTFontPostScriptNameKey)); UIFont *variantFont = [UIFont fontWithName:variantFontName size:fontSize]; CFRelease(ctFont); CFRelease(baseCTFont); return variantFont; }; - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end
相关推荐
在提供的部分内容中,作者提到了一个例子,使用`initWithData:options:documentType:encoding:`方法来初始化`NSMutableAttributedString`,这个方法接收四个参数:文本数据、选项字典、文档类型和编码格式。...
3. **组合多个字符串**: 使用`append:`方法可以将其他`NSAttributedString`对象合并到当前对象中,保持各自的属性不变。 4. **显示**: 将`NSAttributedString`对象赋值给`UILabel`、`UITextView`等UI组件的`...
首先,创建NSAttributedString的基本步骤是创建一个NSMutableAttributedString实例,然后使用append方法添加字符串。每添加一个字符串,我们都可以设置其特定的属性,如字体(UIFont)、颜色(UIColor)和字号。例如...
要求由于以下原因,NSAttributedString + DDHTML要求iOS 7.0的最低iOS部署目标: NSTextAttachment设置使用CocoaPods 在项目中集成NSAttributedString + DDHTML的最简单方法之一是使用 : Podfile添加到您的Podfile ...
在SwiftUI中,为了创建富文本(如带有不同颜色、字体或样式的文本),开发者通常会使用`NSAttributedString`。`NSAttributedString`允许我们为文本的各个部分应用不同的属性,如字体、颜色、下划线样式等。在iOS 13及...
这个资源聚焦于利用UIMenuController来实现在UILabel上复制文本的功能,结合NSAttributedString的使用,可以实现更复杂的文本格式化和定制化。下面我们将深入探讨这两个关键知识点。 首先,UIMenuController是一个...
NSAttributedString + Builder 使用TTTAttributedLabel代替: [label setText: text afterInheritingLabelAttributesAndConfiguringWithBlock: ^ NSMutableAttributedString *( NSMutableAttributedString *...
首先,我们要理解`NSAttributedString`的基本用法。通常,我们通过创建一个`NSAttributedString`实例,并设置其属性字典,来定义文本的样式。例如: ```swift let attributedString = NSMutableAttributedString...
GONMarkupParser, 轻松地从 xml/html构建 NSAttributedString,如用于iOS的字符串 GONMarkupParser轻松地从 xml/html构建 NSAttributedString 。演示 ;DR ; NSString *inputText = @"Simple input text, using
Go-SwiftyMarkdown是一个专门针对Swift开发的Markdown解析器,它的目标是帮助开发者将Markdown文本转化为NSAttributedString,这是一种可以直接在iOS、macOS等Apple平台上使用的富文本表示形式。NSAttributedString...
SCRAttributedStringBuilder 是一种链式构建 NSAttributedString 的库,参考 Masonry 中的链式思路,用于简化 NSAttributedString 冗长的构建和配置。
iOS(和 Mac OS)上的文本样式是使用NSAttributedString完成的,其中“属性”是要应用于字符串子范围的文本样式修饰符。 创建具有复杂样式的NSAttributedString可能是一个乏味的过程。 例如,创建属性字符串的一种...
本框架使用了类似Masonry的链式语法,让设置attributedString方便优雅起来。 self.textView.attributedText = [text yb_makeAttributes:^(YBAttributeMake *make) { make.yb_font([UIFont systemFontOfSize:20]...
1. 改变指定字符串的颜色:在iOS中,我们可以使用`NSAttributedString`的`addAttribute:value:range:`方法来给特定的字符串范围添加颜色属性。通过传入`NSForegroundColorAttributeName`作为键,颜色对象(如`...
所以就仿照系统的 UIAlertView 原始功能,支持使用 NSAttributedString ,这样就可以自定义文本格式了,效果如下图; ###支持的功能: 支持 叠加 的弹出 多个 Alert框; 适配 iOS6、7、8, 弹框支持随着屏幕的 方向...
即使在macOS上,.docx导出器也仅支持NSAttributedString的一部分属性。 该库用于[SimpleFurigana for macOS](https://itunes.apple.com/de/app/simple-furigana/id997615882?l=en&mt=12)和[SimpleFurigana for iOS]...
markdown, Markdown NSAttributedString解析器 Markdown NSAttributedString解析器这是构建在flex解析器之上的Markdown => NSAttributedString解析器。 它接受NSString并返回一个带有 Markdown 标记的NSAt
该项目使用解析markdown字符串,并使用一些代码将其转换为NSAttributedString。 为了测试,从测试码被使用,其是从翻译 。 测试基准来自网站,已在测试文件夹中的!readme.txt文件中进行了说明。 它们的许可证已包含...
这部分文档主要介绍了如何在UIKit中使用NSAttributedString的扩展方法来处理富文本。 **任务** - 如何创建NSAttributedString实例。 - 如何设置文本样式(如字体、颜色等)。 - 如何添加图片到NSAttributedString中...
ASAttributedLabelNode, 在SpriteKit中,绘制 NSAttributedString ASAttributedLabelNode 在SpriteKit中绘制 NSAttributedString 。仅与iOS兼容。安装只需将 ASAttributedLabelNode.swift 拖到项目中即可用法let