IOS @proporty 关键字(一)retain strong
@interface user : nsobject @property (nonatomic,retain) nsstring* tretain; @property (nonatomic,assign) nsstring* tassign; @property (nonatomic,copy) nsstring* tcopy; @end 类us…
|
926
|
|
152 字
|
1 分钟内
Ios8之后, 定位的delegate不能触发的问题
if([cllocationmanager locationservicesenabled]){ self.locationmanage = [[[cllocationmanager alloc] init] autorelease]; self.locationmanage.delegate = self; self.locationmanage…
|
920
|
|
45 字
|
几秒读完
IOS 使用 ZbarSDK 二维码扫描
1. 下载sdk https://github.com/bmorton/zbarsdk 2. 引用到项目中 3. 添加引用 4. appdelegate中添加下面代码 5. 在需要使用扫描的controller中实现zbarreaderviewdelegate 6. 对应的m文件中 #import "…
|
1,002
|
|
60 字
|
几秒读完
Xcode 单元测试
项目创建后自动创建的单元测试文件夹, 文件夹名为项目名+tests, xcode6后貌似没有选择是否添加测试target的选择了。 默认生成的如下图 提供的断言如下 typedefns_enum(nsuinteger, _xctassertiontype) { _xctassertion_fail, _xctassertion_nil, _xcta…
|
904
|
|
66 字
|
几秒读完
改变UITableView选中行高亮的颜色
uiview *backview = [[uiview alloc] initwithframe:self.contentview.frame]; backview.backgroundcolor = [uicolor colorwithred:45.0/255.0 green:105.0/255.0 blue:166.0/255.0 alpha:…
|
978
|
|
0 字
|
几秒读完
苹果企业版帐号申请记录
企业帐号比个人版的申请麻烦而且申请时间比较长, 做个记录免得忘记. 申请帮助见官网: https://developer.apple.com/support/ios/enrollment.php 客服电话:400 670 1855 重要, 有不懂得就问. 客服态度赞. 打电话人多…
|
1,030
|
|
1024 字
|
5 分钟
RGB颜色设置错误
[uicolor colorwithred:<#(cgfloat)#> green:<#(cgfloat)#> blue:<#(cgfloat)#> alpha:<#(cgfloat)#>]; 此处的颜色参数容易想当然的写0-255的值,但此处应该写0.0~1.0的值。 可以这样写: […
|
975
|
|
62 字
|
几秒读完
IOS 设置文件是否使用ARC
全项目设置:building settings修改objective-c automatic reference counting设置是否使用 单文件设置:build phases-compile sources.找到对应文件,双击后输入下面的选项 &n…
|
990
|
|
65 字
|
几秒读完