摘要: UIBlurEffect * b = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]; UIVisualEffectView * v = [[UIVisualEffectView alloc]initWithEffect:b]; 阅读全文
posted @ 2017-07-21 14:57 tongyuling 阅读(381) 评论(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 阅读(1026) 评论(0) 推荐(0) 编辑
摘要: 创建uilabel的分类 //竖着显示 .h写入 @property (nonatomic) NSString *verticalText; .m写入 - (NSString *)verticalText{ // 利用runtime添加属性 return objc_getAssociatedObje 阅读全文
posted @ 2017-07-03 14:36 tongyuling 阅读(1308) 评论(1) 推荐(0) 编辑
摘要: CGRectIntegral()这个函数可以将小数类型的值转为整型 frame的数值为小数时,像素渲染到屏幕上时会产生奇怪的黑影,就是那条诡异的黑线产生的原因CGRectIntegral() 将frame的值都转为整型时,这个问题就被解决了 阅读全文
posted @ 2017-06-23 11:37 tongyuling 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 1. 先在Xcode中添加SVN服务器仓库的地址 : (注意:最后一个斜杠必须要,而且必须是svn的根路径)Xcode -> Preferences -> Accounts -> Add Repository: https://svn.jointsky.com/svn/JointSkyEcosphe 阅读全文
posted @ 2017-06-05 11:07 tongyuling 阅读(3019) 评论(0) 推荐(0) 编辑
摘要: 设置: /** 统一捕获异常 @param exception 异常信息 */ void gloablException(NSException * exception) { #ifdef DEBUG // 异常信息打印 NSLog(@"异常信息:\n%@", exception); NSLog(@ 阅读全文
posted @ 2017-05-16 13:45 tongyuling 阅读(189) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/wangyang1213/p/5209119.html 阅读全文
posted @ 2017-04-26 13:11 tongyuling 阅读(94) 评论(0) 推荐(0) 编辑
摘要: http://www.jianshu.com/p/10b7c87462fd 阅读全文
posted @ 2017-04-11 16:48 tongyuling 阅读(156) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/donghong2008/article/details/38020855 阅读全文
posted @ 2017-04-06 14:29 tongyuling 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1、在iTunesconnect页面,点击右上角的“?”图标,在弹出菜单中选择“联系我们” 2、然后在Contact Us页面,选择“App Review” —> “App Store Review” —>” Request Expedited Review” 最后在表格里填写相关信息,其中最重要的 阅读全文
posted @ 2017-03-29 11:00 tongyuling 阅读(444) 评论(0) 推荐(0) 编辑