
iOS技术
yuhao309
相信自己,一切皆有可能!
展开
-
编译出现: Code Sign error: Provisioning profile does not match bundle identifier:
代码签名错误:供应配置文件不匹配捆绑标识符:在构建设置( “ XCgetting ”)指定的供应配置文件有“ com.jd.getting ”,这不符合您的捆绑标识符“ com.jd.quickInspection ”的一个AppID。原创 2016-09-20 08:54:49 · 1337 阅读 · 0 评论 -
使用Xcode7打包ipa文件出现提示错误
提示错误有2个:1、An error occurred during export.2、The file “xxx.ipa” couldn’t be opened because there is no such file.解决途径:在Target 选择 Build Setting 搜索Enable Bitcode设置为NO,假如你用Cocoapods务必将所有pod库中的Enable原创 2016-09-20 08:57:53 · 2464 阅读 · 0 评论 -
使用AlertController出现:Warning: Attempt to present <UIAlertController: 0x7a961600>
解决方法:在回调方法里面:[self dismissViewControllerAnimated:YES completion:nil]]原创 2016-09-20 09:02:03 · 1368 阅读 · 0 评论 -
打印出现:Could not load the "" image referenced from a nib in the bundle with identifier
原因:引用的图片不存在解决办法:When loading a resource, you must specify the full path. Instead of:[UIImage imageNamed:@"GoPago"];you must do:[UIImage imageNamed:@"Images/Icons/GoPago"];原创 2016-09-20 09:03:18 · 2330 阅读 · 0 评论 -
ios8调用相机报警告: Snapshotting a view that has not been rendered results in an empty snapshot?
这个是iOS8的一个Bug,官方Demo中也有这个问题.你可以试一下用dispatch_async在主线程presentImageController原创 2016-09-20 08:56:00 · 3706 阅读 · 1 评论 -
打印出现:CUICatalog: Invalid asset name supplied: (null)
用了这个方法[UIImage imageNamed:name];但是这个name却是空的,所以就报这个错。解决方法,在项目中搜索[UIImage imageNamed:,然后看看所谓的name是否为空。找到后替换。原创 2016-09-20 09:06:32 · 706 阅读 · 0 评论 -
使用GDataXML解析xml数据出现崩溃问题?
解析文档对象和根节点对象提前释放,导致内存崩溃,虽然GDataXMLNode.m文件已经转成ARC文件,但是自动内存管理不能使用[super dealloc],谨记!原创 2016-09-20 09:11:30 · 406 阅读 · 0 评论 -
iOS导航栏的状态栏显示黑色(但是有信号,时间,电池)?
原因:是由于导航栏的背景图高度不够,需要修改背景图片的高度。原创 2016-09-20 09:15:58 · 2346 阅读 · 0 评论 -
导航栏控制器push页面时候会卡一下?
解决办法:1. 下一个页面设置一下背景颜色.就行了.2. 就是你当前页面请求数据太多,造成的. 当前隐藏导航界面push到下一个显示导航界面出现闪一下的问题?- (void)loadView { [super loadView]; [self.navigationController setNavigationBarHidden:NO animated:YES];原创 2016-09-26 21:25:46 · 695 阅读 · 0 评论 -
Xcode7 真机调试出现错误:The executable was signed with invalid entitlements.(The entitlements specified in y
解决办法:A:第一种方法:删除Build Settings里面的Code Signing Entitlements的值第一步:在工程中添加文件new file,选择Code Signing中的Entitlements,添加后名称为Entitlements.plist。第二步:点击Entitlements.plist进行编辑,删除所有Root下的Key,然后添加一个Boolean类型原创 2016-09-26 21:27:07 · 2013 阅读 · 0 评论 -
编译出现提示:ld: 7 duplicate symbols for architecture i386
原因其实是在.m 文件里面#import了.m 文件而导致的,或者是在.h 文件里面#import了.m 文件。前提是保证程序本身的正确性:有两种情况第一:有框架文件没有包含,导入错误即解决第二:是由于我的粗心,在导入头文件时不小心把.h导入了.m文件,所以出现了上述错误,有一个duplicate的错误提示,修改了导入部分OK了。第三:定义重名的全局变量第四:文件重复~导入第三原创 2016-09-20 08:52:02 · 421 阅读 · 0 评论 -
在滚动视图上添加的多张图片,清空数组但是还有图片存在界面上,是因为清空的是滚动父控件,子控件并没有销毁,按钮和按钮上的图片还是存在?
解决办法:需要把子控件全部取出来滞空for (id object in detailView.photoviews.subviews ){if (object isEqual iamgeView){object.image = nil; }}或者for (UIImage *image in detailView.photoview.subviews ){ima原创 2016-09-26 21:29:27 · 234 阅读 · 0 评论 -
解析数据出错:reason: '-[__NSCFArray bytes]: unrecognized selector sent to instance 0x18056b30'
原因是:应该是请求的方法里就已经有转过一次解析,responseObj 已经是NSArray了,是就不需要再去解析了。解决办法:NSArrar* datas=(NSArrar*)responseObj ;原创 2016-09-26 21:31:22 · 3458 阅读 · 0 评论 -
Xcode编译运行出现:CUICatalog: Invalid asset name supplied: (null)
原因:这个提示的意思是说你用了这个方法:[UIImage imageNamed:name];但是这个name却是空的,所以就报了这个错了。解决方法,在项目中搜索UIImage imageNamed:,然后打印看看所谓的name是否为空。找到后替换。解决方案:点击breakPoints——>选择“+”——>symbolic breakpointsymbolic:填入[UIImage im原创 2016-09-26 21:32:42 · 3440 阅读 · 0 评论 -
编译运行出现:__NSCFConstantString countByEate:objects:count: ?
是关于字典的取值和存值问题,解决途径如下:1》if ([array isKindOfClass:[NSArrayclass]] || [array isKindOfClass:[NSMutableArrayclass]])for (NSMutableArray *temp in array) {for (NSString *str in temp) 2》NSMuta原创 2016-09-26 21:33:27 · 952 阅读 · 0 评论 -
AFN请求数据总是报500错误?
1》真机调试,需要获取APNS的远程推送通知,在appdelegate.m文件里面(didFinishLaunchingWithOptions:方法)2》自定义的解析工具类,注意用block做参数使用时候,在声明方法里面填写参数,在实现方法里面不需要填写参数。3》在控制器里面使用解析工具类做网络请求,需要进行解析服务器返回的数据原创 2016-09-26 21:36:34 · 1781 阅读 · 0 评论 -
运行出现:Trying to start MapKit location updates without prompting for location authorization.
解决办法:请求权限这个方法是ios8推出的,ios7没有这个方法,在ios7上执行这个方法会出错!通过检查是否存在这个方法就可以判断是ios7还是ios8。在Info.plist中加入两个缺省没有的字段:NSLocationAlwaysUsageDescription或NSLocationWhenInUseUsageDescription原创 2016-09-26 21:37:53 · 389 阅读 · 0 评论 -
程序报错:”_SCNetworkReachabilityCreateWithAddress", referenced from:或 "_UTTypeCopyPreferredTagWithClass"
解决方案:添加框架和动态库:解决方法:没有导入SystemConfiguration.framework 1、libz (as above)2、CoreServices.framework 3、在Link Binary With Libraries导入即可.原创 2016-09-26 21:43:35 · 2696 阅读 · 0 评论 -
iOS警告:ignoring file /Users/apple/Documents/拷贝1/.../CorePlot_1.3/Binar
出现有警告:ignoring file ***missing required architecture x86_64 in file **** 并且错误提示:Undefined symbols for architecture x86_64:解决方案:这时我的模拟器是 64bit 当我切换会普通的32 bit 时 这个错误警告和错误就消失了出现有警告:duplicate sy原创 2016-09-26 21:45:52 · 1744 阅读 · 0 评论 -
图片路径L:While reading /Volumes/data2/project/ChildStory/ChildStory/nav_bar.png pngcrush caught libpng
原因:该文件不是真正的png文件,可能是个jpg文件,实际的文件头信息是不一样的,造成不能识别。解决方法有两种:1、重新把图片文件处理成png文件2、修改文件名后缀,比如改成.jpg原创 2016-09-26 21:47:59 · 339 阅读 · 0 评论 -
Xcode运行出现:The Operation couldn't be completed.(LaunchServicesError error 0.)
解决的方法有多种:1.点击当前的模拟器,点击IOS Simulator->Reset Content and Settings...->Reset,然后会重置模拟器,再次运行就可以了2.点击Xcode->Product->Clean3.将模拟器上的当前运行的app删除,再重新加载(长按模拟器的屏幕,点击当前报错的app删除)4.在info.plist文件中修改bundle的版本原创 2016-09-26 21:48:53 · 1161 阅读 · 0 评论 -
AFNetwork在请求时报错code=-1016 和 3840?
1》在进行网络请求时出现-1016,是因为只支持text/json,application/json,text/javascript,可以添加text/html 在进行网络请求时出现3840,添加如下语句:manger.requestSerializer = [AFHTTPRequestSerializer serializer];manger.responseSerializer =原创 2016-09-26 21:50:33 · 2310 阅读 · 0 评论 -
ios automatically signed for developmentbut a conflicting code signing identity iPhone Distribution
1.看看自己工程里面的xxx-Info.plist文件里面的Bundle identifier是否正确2.再看看自己工程中xxxTests里面的xxx-Info.plist里面的Bundle identifier是否保持一致3.再去targets里面的xxxTests里面的code signing看看是不是跟远文件里面的code signing保持一致。4.看看targets里面的原创 2016-10-26 20:31:02 · 4993 阅读 · 0 评论 -
Xcode8使用出现头像图片不显示?
头像图片不显示,要么是2个imageview的位置不对,还有一种情况是Xcode8下,最上面这个imageview切了圆角,把它切成了圆形会有这种情况。不要用代码剪切,在属性检查器里面勾选[self.view layOutIfNeed]; 放到viewDidLoad中,再把图片的大小调大 将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法原创 2016-11-22 13:47:33 · 342 阅读 · 0 评论 -
Xcode8使用出现This app has attempted to access privacy-sensitive data without a usage description.
意思就是说,你需要在 info.plist 文件添加一个 NSLocationAlwaysUsageDescription的 key,然后添加一个描述。解决方案1.在项目中找到info.plist文件,右键点击以Source Code形式打开2.添加以下键值对,这里以 PhotoLibrary 作为例子 key>NSLocationAlwaysUsageDescript原创 2016-11-22 13:45:42 · 4414 阅读 · 0 评论 -
打印出现:You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:
解决办法:第一种:Product -> Target -> Capabilities -> Background Modes -> 勾选Remote notification第二种:info.plist文件配置:Required background modes->App downloads content in response to push notifications原创 2016-11-22 13:51:23 · 8135 阅读 · 0 评论 -
奔溃警告:-[__NSCFString objectForKey:]: unrecognized selector sent to instance 0x7a781910
解决办法:取值时候需要判断[object isKindOfClass:[ClassIThinkItIs class]]原创 2016-11-22 13:54:42 · 4977 阅读 · 0 评论 -
”***" isn't code signed but requires entitlements. It is not possible to add entitlements
解决方法:TARGET->General -> Signing -> click theEnable signingClean -> Build the project原创 2016-11-22 13:55:41 · 5289 阅读 · 0 评论 -
Code signing is required for product type 'Application' in SDK 'iOS 10.0'.
PROJECT --> Build Settings --> Code Signing --> Code Signing Identity设置为 iPhone DeveloperTARGETS --> Build Settings --> Code Signing --> Code Signing Identity设置为 iPhone Developer原创 2016-11-22 13:56:58 · 2107 阅读 · 0 评论 -
duplicate symbol _OBJC_CLASS_$_GTUIAlertView in:
警告出现以下路径:/Users/apple/Library/Developer/Xcode/DerivedData/***-afefklwwzzgigjdbnuhkskbhmbuq/Build/Intermediates/***.build/Debug-iphonesimulator/***.build/Objects-normal/x86_64/GTUIAlertView-A8525843E原创 2016-11-22 13:59:28 · 1076 阅读 · 0 评论 -
ERROR /BuildRoot/Library/Caches/com.apple.xbs/Sources/VectorKit/VectorKit-1228.30.7.17.9
解决办法:- (void)dealloc{#if DEBUG // Xcode8 / iOS10 MKMapView错误解决方法 staticNSMutableArray* unusedObjects; if (!unusedObjects) unusedObjects = [NSMutableArraynew]; [u原创 2016-11-22 14:02:21 · 3586 阅读 · 0 评论 -
error: 'XCTest.framework’ file not found
解决方法:1、在报错的Target中的Building Phases中添加XCTest.framework,修改成optional2、在报错的Target中的Building settings中FRAMEWORK_SEARCH_PATHS添加$(PLATFORM_DIR)/Developer/Library/Frameworks原创 2016-11-22 14:03:30 · 2314 阅读 · 0 评论 -
GDataXml报错: "_kGDataXMLXPathDefaultNamespacePrefix", referenced from:
原因:没有找到GDataXMLNode文件,GDataXMLNode文件很难找到。解决办法:将用到GDataXMLNode文件的类的.h文件中引入的GDataXMLNode.h引用删除,并在该类的.m文件中引用GDataXMLNode.h。原创 2016-11-22 14:06:46 · 759 阅读 · 0 评论 -
”_SecCertificateCopyData", referenced from:
解决方法:需要添加一个Security.framework即可原创 2016-11-22 14:08:02 · 798 阅读 · 0 评论 -
This application is modifying the autolayout engine from a background thread after 。。。
解决办法:dispatch_async(dispatch_get_main_queue(), ^{ // 更UI });原创 2016-11-22 14:10:01 · 469 阅读 · 0 评论 -
Undefined symbols for architecture i386和”_OBJC_CLASS_$_xx文件名", referenced from:
分析原因:1. .m文件没有导入 在Build Phases里的Compile Sources中添加报错的文件2. .framework文件没有导入静态库编译时往往需要一些库的支持,查看你是否有没有导入的库文件同样是在Build Phases里的Link Binary With Libraries中添加3. 重复编译,可能你之前复制过两个地方,在这里添加过两次,删除原创 2016-11-22 14:11:25 · 345 阅读 · 0 评论 -
"ld: library not found for -l...."
解决办法:因为Framework search paths,导致路径没有配,导致类库找不到。原创 2016-11-22 14:12:42 · 2645 阅读 · 0 评论 -
"*** " is automatically signed for development, but a conflicting code signing identity。。。
分析原因:1.看看自己工程里面的xxx-Info.plist文件里面的Bundle identifier是否正确2.再看看自己工程中xxxTests里面的xxx-Info.plist里面的Bundle identifier是否保持一致3.再去targets里面的xxxTests里面的code signing看看是不是跟远文件里面的code signing保持一致。4.看看tar原创 2016-11-22 14:14:32 · 11718 阅读 · 0 评论 -
__nw_connection_get_connected_socket_block_invoke Connection has no connected handler
解决办法是:1. Xcode menu -> Product -> Edit Scheme...2. Environment Variables -> Add -> Name: "OS_ACTIVITY_MODE", Value:"disable"3. Run your app again, done! 这样就没问题了原创 2016-11-22 14:15:56 · 7739 阅读 · 1 评论 -
reason: 'UIPopoverPresentationController (<UIPopoverPresentationController: 0x7f223f40>)。。。
分析原因:是由于有一个非空sourceView或barButtonItem在弹出之前没有设置。原创 2016-11-22 14:18:30 · 753 阅读 · 0 评论