码迷,mamicode.com
首页 >  
搜索关键字:nsmutableattributeds    ( 7个结果
iOS 设置不同的字体颜色
//设置不同字体颜色 -(void)fuwenbenLabel:(UILabel *)labell FontNumber:(UIFont *)font AndRange:(NSRange)range AndColor:(UIColor *)vaColor { NSMutableAttributedS ...
分类:移动开发   时间:2016-07-12 18:54:39    阅读次数:239
iOS_字符串显示不同颜色
最近写代码需要根据不同的内容显示不同的颜色。在这里mark一下。 设置颜色: NSString *contentStr = @"简介:hello world"; NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:contentStr]; //设置:在0-3个单位长度内的内容显...
分类:移动开发   时间:2015-05-26 21:25:49    阅读次数:239
NSMutableAttributedString
http://www.1360.cc/ZhanChangJiaoCheng/22851.html NSMutableAttributedString -> NSAttributedString ->  NSObject ---------------------- NSUnderlineStyle typedef NS_ENUM(NSInteger, N...
分类:其他好文   时间:2014-11-13 16:49:40    阅读次数:250
富文本NSAttributedString与NSMutableAttributedString
NSAttributedString NSAttributedString用来处理字符串,使在同一字符串内显示出不同属性的字符。(例如:用来处理字符串)总之就是可以设置字符串中指定位置或指定范围内字符的属性。 创建一个NSAttributedString对象 - (instancetype)initWithString:(NSString *)aString   使用字...
分类:其他好文   时间:2014-11-06 17:44:46    阅读次数:254
怎么把绝对路径修改成相对路径
我最近在使用友盟的第三方库遇到一个路径错误的错误,找了好久才发现是使用了绝对路径,还有友盟不支持我Xcode的64位错误,虽然困扰我许久,但是终于解决了.具体情况如下, 第一步:修改64位 第二步:改相对路径...
分类:其他好文   时间:2014-09-04 11:50:09    阅读次数:172
带属性的字符串 NSMutableAttributedString/NSAttributedString
由于iOS7新出的NSTextStorge是NSMutableAttributedString的子类,所以要用好NSTextStorage,首先要学好NSMutableAttributedString和NSAttributedString。 按个人的理解,NSAttributedString是一个带有属性的字符串,通过该类可以灵活地操作和呈现多种样式的文字数据。   ali...
分类:其他好文   时间:2014-08-05 22:37:40    阅读次数:242
NSMutableAttributedString控制字符串的属性
你知道怎么在一个label设置不同的颜色嘛?以前我是用两个字符串拼接的,很多人这样干过,哈哈。  //带有属性的文字     NSString *string = @"你知道怎么在一个label设置不同的颜色嘛?";     NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWit...
分类:其他好文   时间:2014-06-07 14:32:26    阅读次数:233
7条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!