摘要: 偶然发现的一个好玩的功能 阅读全文
posted @ 2016-06-16 14:02 鲁国将士 阅读(277) 评论(2) 推荐(0) 编辑
摘要: 1 建立导航控制器 2.导航控制器添加如下代码 - (void)viewDidLoad { [super viewDidLoad]; id target = self.interactivePopGestureRecognizer.delegate; UIPanGestureRecognizer * 阅读全文
posted @ 2016-03-02 16:34 鲁国将士 阅读(1206) 评论(1) 推荐(0) 编辑
摘要: 在应用中我们经常需要做一些仿射变换 可以用于 平移、旋转、缩放变换路径; View有一个属性transform 可以指定一个 CGAffineTransform 即可完成仿射变换 1.平移变换 2 缩放 3 旋转 当然这三种效果也可以组合着用 需要借助CGAffineTransformIdentit 阅读全文
posted @ 2016-03-21 15:13 鲁国将士 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 为了让CocoaPods的引入不显示警告,在Podfile最上方加上: inhibit_all_warnings!pod search 一些第三方SDK,发现并不是最新版本,那是因为你的本地repo还没更新 pod repo remove master pod repo add master htt 阅读全文
posted @ 2016-02-18 15:12 鲁国将士 阅读(795) 评论(0) 推荐(0) 编辑
摘要: 用到了math 里的两个函数 round powdouble Myround(double n,int length){ return round(n*pow(10, length))/pow(10, length);}例如想求12312.4455453 后边的三位小数可以这么写Myround(1... 阅读全文
posted @ 2015-12-15 11:23 鲁国将士 阅读(715) 评论(0) 推荐(0) 编辑
摘要: plist文件添加Localizations添加一项字段Chinese (simplified) 阅读全文
posted @ 2015-11-18 17:16 鲁国将士 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-11-17 10:14 鲁国将士 阅读(141) 评论(0) 推荐(0) 编辑
摘要: iPhone Portrait iOS 8-Retina HD 5.5 (1242×2208) @3xiPhone Portrait iOS 8-Retina HD 4.7 (750×1334) @2xiPhone Portrait iOS 7,8-2x (640×960) @2xiPhone Po... 阅读全文
posted @ 2015-09-10 15:27 鲁国将士 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 理方法如下:1、确保Xcode版本号>=5.0.12、更新project settings, minimum deployment target >= 5.1.13、Valid Architectures 添加设置 armv7 armv7s arm644、改变Architectures为 Stand... 阅读全文
posted @ 2015-07-15 11:53 鲁国将士 阅读(227) 评论(0) 推荐(0) 编辑