- 博客(8)
- 资源 (8)
- 收藏
- 关注
原创 iOS--跳转到app自己的设置页面
NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString]; if (@available(iOS 10.0, *)) { [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:^(BOOL su
2017-11-20 16:45:17
713
1
原创 专治Xcode升级后插件失效的问题
step 1:终端输入命令 defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUIDstep 2:find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth
2016-03-23 11:06:15
406
转载 关于上传AppStore碰到Failed to locate or generate matching signing assets的问题
原文链接
2016-02-19 19:32:01
336
原创 xcode更新之后,插件失效的解决办法
step1.在终端执行命令:defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID,获取到UUIDstep2.find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdep
2015-12-15 09:37:19
300
转载 tableview的两个获得重用cell方法dequeueReusableCellWithIdentifier的区别
1 这个方法在SDK5.0是运行不起来的。2 如果需要使用这个方法,你必须使用配套的方法来一起用,下面两个配套方法:// Beginning in iOS 6, clients can register a nib or class for each cell.// If all reuse identifiers are registered, use the newer -deq
2015-08-02 16:26:20
454
原创 Xcode7中关于下载网络图片报错的问题
Xcode7中,在下载网络图片时,会产生如下错误:App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.解
2015-07-20 08:55:20
642
原创 关于OC对象属性中的NSString类型为什么用copy修饰
用copy修饰的区别,发生在用NSMutableString类型给NSString类型赋值时,为了防止赋值的属性内容被无意中修改,所以用copy修饰。#import @interface CopyStr : NSObject@property (nonatomic, copy) NSString *strCopy;@property (nonatomic, strong)
2015-07-15 00:57:34
1275
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人