/*预定义字符属性的文本。如果钥匙不在字典,然后使用默认值,如下所述。 */

以下属性是IOS6的

NSVerticalGlyphFormAttributeName NS_AVAILABLE_IOS(6_0);   一个NSNumber包含一个整数的值。0表示水平文本。1表示垂直文本。如果没有指定,它可以按照上级的垂直方向设置。目前在iOS,它总是水平。任何其他的行为是未定义的值。

NSFontAttributeName NS_AVAILABLE_IOS(6_0);                 uifont,默认Helvetica(新)12

NSParagraphStyleAttributeName NS_AVAILABLE_IOS(6_0);       NSParagraphStyle, default defaultParagraphStyle 设置段落的

NSForegroundColorAttributeName NS_AVAILABLE_IOS(6_0);      UIColor, default blackColor  设置前景颜色

NSBackgroundColorAttributeName NS_AVAILABLE_IOS(6_0);      UIColor, default nil: no background  设置背景颜色

NSLigatureAttributeName NS_AVAILABLE_IOS(6_0);            包含整数的NSNumber, default 1: default 连写字符, 0: 非连写字符

NSKernAttributeName NS_AVAILABLE_IOS(6_0);                 NSNumber包含浮点值,在点量修改默认的字距调整。0指间距是不可用的。

NSStrikethroughStyleAttributeName NS_AVAILABLE_IOS(6_0);  包含整数的NSNumber, default 0: 没有删除线

NSUnderlineStyleAttributeName NS_AVAILABLE_IOS(6_0);       包含整数的NSNumber, default 0: 没有下划线

NSStrokeColorAttributeName NS_AVAILABLE_IOS(6_0);          UIColor, 默认是和前景色一致的 设置笔画的颜色

NSStrokeWidthAttributeName NS_AVAILABLE_IOS(6_0);          NSNumber包含浮点值, 在字体大小默认是百分之0: no stroke; 对单独的笔画是有利的,对充满的笔画模式是不利的 (在概述了文本的典型值是3)

NSShadowAttributeName NS_AVAILABLE_IOS(6_0);               NSShadow, 默认是没有阴影的

以下的属性是IOS7的

NSTextEffectAttributeName NS_AVAILABLE_IOS(7_0);           NSString, default nil: no text effect(影响)

NSAttachmentAttributeName NS_AVAILABLE_IOS(7_0);           NSTextAttachment, default nil 附件属性

NSLinkAttributeName NS_AVAILABLE_IOS(7_0);                 NSURL (preferred) or NSString

NSBaselineOffsetAttributeName NS_AVAILABLE_IOS(7_0);       NSNumber containing floating point value, in points; offset from baseline, default 0

NSUnderlineColorAttributeName NS_AVAILABLE_IOS(7_0);       UIColor, default nil: same as foreground color

NSStrikethroughColorAttributeName NS_AVAILABLE_IOS(7_0);   UIColor, default nil: same as foreground color

NSObliquenessAttributeName NS_AVAILABLE_IOS(7_0);          NSNumber containing floating point value; skew to be applied to glyphs, default 0: no skew

NSExpansionAttributeName NS_AVAILABLE_IOS(7_0);            NSNumber containing floating point value; log of expansion factor to be applied to glyphs, default 0: no expansion

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,

/****************** Attributes ********************/的更多相关文章

  1. Eclipse "Unable to install breakpoint due to missing line number attributes..."

    Eclipse 无法找到 该 断点,原因是编译时,字节码改变了,导致eclipse无法读取对应的行了 1.ANT编译的class Eclipse不认,因为eclipse也会编译class.怎么让它们统 ...

  2. 执行打的maven jar包时出现“Exception in thread "main" java.lang.SecurityException: Invalid signature file digest for Manifest main attributes”

    Exception in thread "main" java.lang.SecurityException: Invalid signature file digest for ...

  3. webapi filter过滤器中获得请求的方法详情(方法名,Attributes)

    public class GlobalActionFilter : ActionFilterAttribute { private string _requestId; public override ...

  4. .NET Attributes

    Attributes 特性      公共语言运行时允许添加类似关键字的描述声明,叫做attributes, 它对程序中的元素进行标注,如类型.字段.方法和属性等.Attributes和Microso ...

  5. 给iOS开发新手送点福利,简述文本属性Attributes的用法

    给iOS开发新手送点福利,简述文本属性Attributes的用法   文本属性Attributes 1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSF ...

  6. jQuery in action 3rd - Working with properties, attributes, and data

    properties properties 是 JavaScript 对象内在的属性,可以进行动态创建,修改等操作. attributes 指的是 DOM 元素标记出来的属性,不是实例对象的属性. 例 ...

  7. Unsupported configuration attributes: [FILE_UPLOAD]

    Caused by: java.lang.IllegalArgumentException: Unsupported configuration attributes: [FILE_UPLOAD] 情 ...

  8. Jade模板引擎(一)之Attributes

    目录: Attributes Boolean Attributes Style Attributes Class Attributes &Attributes Attributes jade中 ...

  9. ASP.NET MVC 使用带有短横线的html Attributes(转载)

    转载地址:http://www.nmtree.net/2013/10/25/asp-net-mvc-use-dash-in-html-attributes.html 情景再现 我们常常需要一个文本框来 ...

  10. Create and Use Custom Attributes

    http://www.codeproject.com/Articles/1811/Creating-and-Using-Attributes-in-your-NET-applicat Create a ...

随机推荐

  1. 伸展树 Splay Tree

    Splay Tree 是二叉查找树的一种,它与平衡二叉树.红黑树不同的是,Splay Tree从不强制地保持自身的平衡,每当查找到某个节点n的时候,在返回节点n的同时,Splay Tree会将节点n旋 ...

  2. [改善Java代码]小心switch带来的空值异常

    使用枚举定义常量时,会伴有大量的switch语句判断,目的是伪类每个枚举项解释其行为,例如: public class Client { public static void main(String[ ...

  3. 转:Nginx RTMP 功能研究

    看点: 1.    Nginx 配置信息与使用.  (支持 rtmp与HLS配置) 2.    有ffmpeg 编译与使用,    命令行方式来测试验证客户端使用. 转自:http://blog.cs ...

  4. li颜色特效

    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>    < ...

  5. css hack 大全 各个浏览器的css

    各个浏览器的css hack区别属性: IE6: _zoom:1; IE6/7: *zoom:1; IE6/7/8/9 :\9 各个浏览器的css hack区别规则 IE6: *html{} IE7: ...

  6. MySqlDataReader在Using中使用

    结论:当DataReader放在Using方法中时,会自动释放资源,如果中途出现了异常处理,也同样会释放掉占用的资源.测试过程:这里由于没有将全部分过程记录下来,只是对结果大体的说明一下,有兴趣的童鞋 ...

  7. 北大ACM(POJ1004-Financial Management)

    Question:http://poj.org/problem?id=1004问题点:求平均值及格式化输出. Memory: 248K Time: 0MS Language: C++ Result: ...

  8. php对UTF8字体串进行单字分割返回数组

    在网上查了很多字符串分割方法,都无法正确对UTF8字符串进行正确分割返回单个字符的数组.经过对FTU8编码的分析写出了下面的方法对UTF8进行分割.本人测试可用.本方法只支持UTF8编码的,其它编码转 ...

  9. HDU 5491 The Next(位运算)

    题意:已知D(0<=D<2^31).s1.s2,其中L为D转化为二进制数时1的个数,题目保证s1<=L<=s2,求一个数,满足以下条件: 1.比D大 2.转化为二进制时1的个数 ...

  10. 基于TLS的反调试技术

    TLS(Thread Local Storage 线程局部存储) 一个进程中的每个线程在访问同一个线程局部存储时,访问到的都是独立的绑定于该线程的数据块.在PEB(进程环境块)中TLS存储槽共64个( ...