iOS错误集合
yinachong
这个作者很懒,什么都没留下…
展开
-
CUICatalog: Invalid asset name supplied: (null)、Unknown CGRect
1、UIImageView为空所致 2、在Xcode6之前,创建的文件系统会自动为用户导入Foundation.h和UIKit.h文件,但是最新的Xcode6只为用户导入了Foundation.h文件,缺少一个。只需要导入 #import原创 2015-05-02 09:19:17 · 294 阅读 · 0 评论 -
Domain=com.alamofire.error.serialization.response Code=-1011 "Request failed: bad request (400)
报错的原因,可能有两个 (1)url写错了 (2)参数的内容写错了 仔细检查这两项就可以了原创 2015-12-15 16:48:41 · 13944 阅读 · 2 评论 -
directory not found for option
升级xcode7报以下警告 ld: warning: directory not found for option ‘-F/Applications/Xcode 7.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Fr原创 2015-12-11 19:33:21 · 459 阅读 · 0 评论 -
Error Domain=kCLErrorDomain Code=0 "The operation couldn’t be completed. (k
修改当前位置,不行的话,就重置模拟器原创 2015-10-13 08:33:37 · 313 阅读 · 0 评论 -
Attempting to badge the application icon but haven't received permission from the user to badge the
(1)原因 一切都是iOS8捣的鬼。您如果把模拟器换成iOS7.1或者更早的,就不会有这个问题。而现在在iOS8中要实现badge、alert和sound等都需要用户同意才能,因为这些都算做Notification“通知”,为了防止有些应用动不动给用户发送“通知”骚扰用户,所以在iOS8时,要“通知”必须要用户同意才行。 (2)解决思路:我们判断一下,如果系统版本大于等于8.0的话,我们就在用转载 2015-09-17 07:25:27 · 300 阅读 · 0 评论 -
不能约束两个视图,在没有一个公共superview的情况下
'Can't constrain two views that do not share a common superview. Make sure that both views have been added into the same view hierarchy. YCDropDownMenuView *menu = [YCDropDownMenuView原创 2015-09-25 22:51:16 · 777 阅读 · 0 评论 -
[UIPopoverController dealloc] reached while popover is still visible
popover 可见的时候,不可以销毁对象, 此时应采取的措施是,定义一个strong属性,来引用这个popover原创 2015-08-10 10:32:40 · 678 阅读 · 0 评论 -
不更改时区,会返回一个空的NSDate对象
更改时间格式化对象的locale原创 2015-06-13 09:57:59 · 349 阅读 · 0 评论 -
SDWebImage报错
报错: Use of undeclared identifier '_executing'; Use of undeclared identifier '_finished'; @synthesize executing = _executing ; @synthesize finished = _finished;原创 2015-06-05 13:25:32 · 492 阅读 · 0 评论 -
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIViewController 0x687
1、打开xib文件,在File's Owner上点击右键,然后在弹出的窗口中检查是否有“惊叹号”提示的IBOutlet连接 2、检查在xib文件中没有正确指定对象的类 3、查看连线是否正确原创 2015-05-16 17:08:01 · 484 阅读 · 0 评论 -
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[YCFlag objectAtIn
检查数组下标是否正确原创 2015-05-16 17:13:43 · 428 阅读 · 0 评论 -
cell的detailLabel不显示
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID]; 将cell的样式设为Subtitle原创 2015-05-06 08:34:49 · 404 阅读 · 0 评论 -
一个关于UIImage的错误:CUICatalog: Invalid asset name supplied: (null), or invalid scale factor: 2.000000
[UIImage imageNamed:name];但是这个name却是空的,所以就报了这个错了。 解决方法,在项目中搜索[UIImage imageNamed:,然后打印看看所谓的name是否为空。找到后替换。原创 2015-05-01 21:16:17 · 379 阅读 · 0 评论 -
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure.
在info.plist中,加入以下key原创 2015-11-30 21:26:05 · 283 阅读 · 0 评论