NSMutableAttributedString *attString = [[NSMutableAttributedString
alloc]
initWithString:@"进击的巨人"];
NSShadow *shadow = [[NSShadow
alloc]init];
shadow.shadowColor = [UIColor
darkGrayCol...
分类:
移动开发 时间:
2015-05-23 10:07:48
阅读次数:
230
关于NSString追加字符串的问题,网上也有不少的做法,比较多的做法是:NSMutableString *str=[[NSMutableStringalloc] initWithString:@"dd"];[str stringByAppendingString:@"eee" ]; //问题行N....
分类:
其他好文 时间:
2015-05-14 16:14:50
阅读次数:
115
NSMutableAttributedString *str = [[NSMutableAttributedString alloc]initWithString:@"我还是一样帅"]; //设置文字颜色 [str addAttribute:NSForegroundColorAttribu...
分类:
其他好文 时间:
2015-05-09 17:29:08
阅读次数:
117
_psdTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:NSLocalizedString(@"密码", nil) attributes:@{NSFontAttributeName:_psdTextField.font,NSForegroundColorAttributeName:[UICol...
分类:
移动开发 时间:
2015-05-07 14:40:55
阅读次数:
129
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NS...
分类:
其他好文 时间:
2015-05-04 14:01:30
阅读次数:
219
NSMutableAttributedString *str
= [[NSMutableAttributedString alloc]
initWithString:@"Using
NSAttributed String"];
[str
addAttribute:NSForegroundColorAttributeName value:[UIColor
blueColor...
分类:
其他好文 时间:
2015-05-01 09:23:20
阅读次数:
125
格式化字符串就是按一定格式输出的字符串 或者 将某种格式的字符串转化为另外一种格式。目的就是让程序可读性增强创建字符串1 NSstring * str1 = @"hello";2 NSString * str = [[NSString alloc]initWithString:@"h...
分类:
其他好文 时间:
2015-04-21 17:52:16
阅读次数:
123
NSString *str = @"0123456789”;//label内容
NSMutableAttributedString *str1 = [[NSMutableAttributedString alloc] initWithString:str];
//根据下标索引设置字体颜色
[str addAttribute:NSForegroundColorAttributeName value:...
分类:
移动开发 时间:
2015-04-21 16:06:16
阅读次数:
165
NSMutableAttributedString *titleAttriString = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@”¥200现金券”]];
[titleAttriString addAttribute:NSFontAttributeName...
分类:
其他好文 时间:
2015-04-16 09:08:17
阅读次数:
241
NSURL* url = [[NSURL alloc] initWithString:@“http://blog.csdn.net/iukey”];[[ UIApplication sharedApplication]openURL:url];NSURL* url = [[NSURL alloc] ...
分类:
移动开发 时间:
2015-04-14 16:11:00
阅读次数:
145