标签: iOS

4 篇文章

IOS @proporty 关键字(一)retain strong
@interface user : nsobject @property (nonatomic,retain) nsstring* tretain; @property (nonatomic,assign) nsstring* tassign; @property (nonatomic,copy) nsstring* tcopy; @end 类us…
Ios8之后, 定位的delegate不能触发的问题
if([cllocationmanager locationservicesenabled]){ self.locationmanage = [[[cllocationmanager alloc] init] autorelease]; self.locationmanage.delegate = self; self.locationmanage…
IOS 使用 ZbarSDK 二维码扫描
1. 下载sdk   https://github.com/bmorton/zbarsdk 2. 引用到项目中 3. 添加引用 4. appdelegate中添加下面代码   5. 在需要使用扫描的controller中实现zbarreaderviewdelegate 6. 对应的m文件中 #import "…
Xcode 单元测试
项目创建后自动创建的单元测试文件夹, 文件夹名为项目名+tests, xcode6后貌似没有选择是否添加测试target的选择了。 默认生成的如下图 提供的断言如下 typedefns_enum(nsuinteger, _xctassertiontype) { _xctassertion_fail, _xctassertion_nil, _xcta…