iOS中富文本的AttributeNames

目录:

1. NSFontAttributeName;
2. NSParagraphStyleAttributeName;
3. NSForegroundColorAttributeName;
4. NSBackgroundColorAttributeName;
5. NSLigatureAttributeName;
6. NSKernAttributeName;
7. NSStrikethroughStyleAttributeName;
8. NSUnderlineStyleAttributeName;
9. NSStrokeColorAttributeName;
10.NSStrokeWidthAttributeName;
11.NSShadowAttributeName;
12.NSTextEffectAttributeName;
13.NSAttachmentAttributeName;
14.NSLinkAttributeName;
15.NSBaselineOffsetAttributeName;
16.NSUnderlineColorAttributeName;
17.NSStrikethroughColorAttributeName;
18.NSObliquenessAttributeName;
19.NSExpansionAttributeName;
20.NSWritingDirectionAttributeName;
21.NSVerticalGlyphFormAttributeName;


1.NSFontAttributeName//字体 UIFont

2.NSParagraphStyleAttributeName//段落样式

以下截图来自YYText


3.NSForegroundColorAttributeName //字颜色 UIColor

4.NSBackgroundColorAttributeName //背景色 UIColor

Read More

Tips

1.查看宏到底写了什么

在Xcode中,选择Product -> Perform Action -> Preprocess “XXXXViewController”。这会对view controller 文件进行预处理,展开所有的宏,以便你能看到最终的输出。

Read More

Mac练手小项目

IconMarker

可以根据不同的平台生成对应的icon尺寸

Read More

如何更好的跳转,更便利的Self-Manager

我们在开发过程中总会遇到如下场景:

1.tableviewcell(view)中的控件点击需要跳转到各种页面

Read More