1、保存到iOS照片库需要引入QuartzCore.framework框架,具体代码如下: .h文件 2、保存到对应的沙盒目录中,具体代码如下: ...
分类:
其他好文 时间:
2016-10-23 07:44:43
阅读次数:
223
Masonry整理Masonry是以AutoLayout为基础的轻量级布局框架更加简化了整个约束系统Masonry三方下载本文参考:地址1地址2地址3地址4*Masonry有哪些属性@property(nonatomic,strong,readonly)MASConstraintleft;@property(nonatomic,strong,readonly)MASConstrainttop;@property(n..
分类:
其他好文 时间:
2016-10-17 23:50:52
阅读次数:
211
nonatomic:非原子性访问,不加同步,多线程并发访问会提高性能。如果不加此属性,则默认是两个访问方法都为原子型事务访问。 (atomic是Objc使用的一种线程保护技术,基本上来讲,是防止在写未完成的时候被另外一个线程读取,造成数据错误。而这种机制是耗费系统资源的,所 以在iPhone这种小型 ...
分类:
其他好文 时间:
2016-10-14 12:08:31
阅读次数:
148
轮播图播放的主要技术在于: cell的封装。这里采用UICollectionViewCell实现。 #import <UIKit/UIKit.h> @interface CircleViewCell : UICollectionViewCell @property (nonatomic, stron ...
分类:
移动开发 时间:
2016-10-12 19:20:50
阅读次数:
291
Xcode的代码片段(Code Snippets)创建自定义的代码片段,当你重用这些代码片段时,会给你带来很大的方便。 常用的: 1.strong:@property (nonatomic,strong) <#Class#> *<#object#>;2.weak:@property (nonatom ...
分类:
其他好文 时间:
2016-10-08 20:28:56
阅读次数:
100
#import <UIKit/UIKit.h> @interface PJXPageView : UIView /* 圆点颜色*/ @property(strong,nonatomic)UIColor *PJX_currentColor; /*没选中的圆点颜色*/ @property(strong, ...
分类:
其他好文 时间:
2016-09-29 21:03:18
阅读次数:
177
初学swift 但是网上只有很多swift用xib创建的cell,就算是有也不是我想要的。今天自己弄了一个不用xib纯代码写的,来上代码 自定义cell 下面是controller 例外说一点懒加载 OC的懒加载 @property (nonatomic, strong) NSMutableArra ...
分类:
编程语言 时间:
2016-09-28 15:10:24
阅读次数:
182
1、定义全局成员变量 @interface AppDelegate () @property (strong, nonatomic) UIImageView *adImageView; @property (strong, nonatomic) UINavigationController *roo ...
分类:
移动开发 时间:
2016-09-26 17:39:59
阅读次数:
141
在分类中利用@property添加属性,只能声明实例变量的存取声明,而没有存取方法的实现,可以利用runtime实现。 在头文件中定义属性 @property (nonatomic, copy)NSString *name; 在.m文件中实现存取方法 static char *key = "name ...
分类:
其他好文 时间:
2016-09-26 11:09:05
阅读次数:
132
cell重用时,图片更换 1.在模型中定义一个图片属性 @property (nonatomic,copy) UIImage *image; 2.判断模型中是否已经存在图片 如果有图片 就给当前 模型对象图片赋值 3.如果没有图片就先显示占位图片 然后异步下载图片 4.将下载完的图片保存在模型里面 ...
分类:
其他好文 时间:
2016-09-25 10:37:23
阅读次数:
118