NSMutableAttributedString *goalTipStr = [[NSMutableAttributedString alloc]initWithString:@"请关注给广告主带来的效果,结单时的收入,将根据订单的目标效果的完成比例结算。"]; NSTextAttachment ...
分类:
其他好文 时间:
2016-08-01 17:36:11
阅读次数:
221
设置账号,密码字体的颜色NSMutableDictionary*dict=[NSMutableDictionarydictionary];dict[NSForegroundColorAttributeName]=[ICEToolscolorWithHexString:@"C1C0C2"];NSAttributedString*attribute=[[NSAttributedStringalloc]initWithString:self.accountTextFiled.placehol..
分类:
其他好文 时间:
2016-07-13 23:28:24
阅读次数:
409
NSString * sit= @"忘记密码"; NSMutableAttributedString *sti =[[NSMutableAttributedString alloc]initWithString:sit]; //设置背景颜色以及下划线 NSDictionary * dict1 = @ ...
分类:
其他好文 时间:
2016-06-28 23:49:59
阅读次数:
444
NSMutableString *newStr = [[NSMutableString alloc] initWithString:[NSString stringWithFormat:@"%ld",(long)_flowerNum]]; NSInteger insertPosition = new ...
分类:
其他好文 时间:
2016-06-14 13:49:17
阅读次数:
176
第一种 UIColor *color = [UIColor whiteColor]; _userName.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegrou ...
分类:
其他好文 时间:
2016-06-12 18:09:29
阅读次数:
130
UIColor *color = [UIColor whiteColor]; _usernameTextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"请输入账号" attributes:@{NSF ...
分类:
其他好文 时间:
2016-06-02 13:06:01
阅读次数:
216
_introduce.text=status.introduce; //设置行间距 NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:_introduce.te ...
分类:
其他好文 时间:
2016-05-26 11:32:22
阅读次数:
120
NSMutableAttributedString *noteStr = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@"作品:%@",data[@"works_num"]]]; NSRan ...
分类:
其他好文 时间:
2016-05-13 11:25:03
阅读次数:
123
#pragmamark-once获取文字高度-(CGSize)sizeWithmaxSize:(CGSize)sizeanText:(NSString*)anString{NSMutableAttributedString*attributedString=[[NSMutableAttributedStringalloc]initWithString:anString];NSMutableParagraphStyle*style=[[NSMutableParagraphStylealloc]ini..
分类:
移动开发 时间:
2016-05-05 07:13:03
阅读次数:
252
一 字符串 二 可变字符串的初始化方法 对象方法的初始化 //init是对象方法 //将不可变字符串转换为可变字符串 NSMutableString *str2=[[NSMutableString alloc] initWithString:str1]; NSLog(@"%ld",str2.leng ...
分类:
其他好文 时间:
2016-04-26 10:48:12
阅读次数:
178