07 2017 档案

摘要:UIBlurEffect * b = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]; UIVisualEffectView * v = [[UIVisualEffectView alloc]initWithEffect:b]; 阅读全文
posted @ 2017-07-21 14:57 tongyuling 阅读(436) 评论(0) 推荐(0)
摘要:NSString * str = @"abcdefg"; NSMutableString * string = [[NSMutableString alloc]initWithCapacity:str.length]; int j = (int)str.length; for (int i = j 阅读全文
posted @ 2017-07-17 15:28 tongyuling 阅读(1052) 评论(0) 推荐(0)
摘要:创建uilabel的分类 //竖着显示 .h写入 @property (nonatomic) NSString *verticalText; .m写入 - (NSString *)verticalText{ // 利用runtime添加属性 return objc_getAssociatedObje 阅读全文
posted @ 2017-07-03 14:36 tongyuling 阅读(1356) 评论(1) 推荐(0)