
iOS
文章平均质量分 74
qq_18127543
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
自定义涂鸦DEMO
#import "DoodleView.h" @implementation DoodleView - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { //创建一个大数组用来保存画过的线 self._lineArr原创 2014-07-22 17:33:39 · 375 阅读 · 0 评论 -
使用Cocopods遇到的一些问题
1.使用CocoPods添加第三方库时失败,原因如下: - `ReactiveCocoa (~> 4.0.2-alpha-1)` required by `Podfile` ? 解决方案:这个是更新cocopods时,忘记使用 pod setup 安装; 2.使用CocoPods时出现如下错误: CocoaPods 0.39.0.rc.1 is available. To upda原创 2015-10-09 14:41:59 · 386 阅读 · 0 评论 -
IOS中的六大手势
/*六大手势:1.轻拍,单击,双击,多指点击 2.长按 3.轻扫,分上下左右四个方向 4.旋转 5.捏合,放大缩小 6.拖拽,移动位置 */ UIView *aView = [[UIView alloc] initWithFrame:CGRectMake(30, 30, 280, 280)]; aView.backgroundColor = [UIColor原创 2014-07-22 17:27:12 · 338 阅读 · 0 评论