
bug错误记录
拒绝懒惰
这个作者很懒,什么都没留下…
展开
-
内存错误崩溃1
UITableViewCell+_setIndexBarWidth message send to dealloc ....原因:cell复用的时候写了autorelease,应该在创建的时候autorelease。原创 2014-03-21 10:46:12 · 549 阅读 · 1 评论 -
setDeleteAnimationInProgress
//IOS8中删除最后一个cell的时,报一个错误 [RemindersCell _setDeleteAnimationInProgress:]: message sent to deallocated instance在重新刷新tableView的时候延迟一下dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 *转载 2015-11-16 18:18:41 · 498 阅读 · 0 评论 -
Info.plist Utility Error: “Info.plist couldn't be opened because there is no such file”
http://stackoverflow.com/questions/26189404/info-plist-utility-error-info-plist-couldnt-be-opened-because-there-is-no-suc有时候你从一些网站下载的代码编译会出现如下错误:可能原因:有可能是在删除“XXXTests”文件夹时,没有彻底转载 2015-09-11 12:03:35 · 494 阅读 · 0 评论 -
could not build module UIKit”
在使用xcode编译代码的时候,偶尔会遇到”could not build module UIKit”的提示。 解决问题的方法是删除ModuleCache 文件夹: /Users/YOURUSERNAME/Library/Developer/Xcode/DerivedData/ModuleCache原文地址:http://blog.3snews.net/space.php?ui转载 2015-09-02 17:51:07 · 811 阅读 · 0 评论 -
Unbalanced calls to begin/end appearance transitions for <uivewcontroller>
Unbalanced calls to begin/end appearance transitions for 原因就是上次动画还没结束,然后又开始了新的动画。 这样就导致不能成功切换页面,而是一个白色无内容的页面。出现unbalanced calls to begin/end appearance transitions for uiviewcontroller这样的log,转载 2014-07-03 13:40:56 · 1113 阅读 · 0 评论 -
一个错误
今天在做考试系统,一个简单的table原创 2014-04-30 13:26:19 · 485 阅读 · 0 评论 -
[CALayer release] crash
做项目遇到一个崩溃CALayer release原创 2014-05-07 16:21:09 · 563 阅读 · 0 评论 -
(540,620)
http://stackoverflow.com/questions/6040908/programmatically-determine-the-size-of-an-ipad-modal-view/6041415#6041415问题:原创 2014-06-16 16:21:30 · 576 阅读 · 0 评论 -
静态库bug
错误提示: Undefined symbols for architecture i386: "_OBJC_CLASS_$_MyView", referenced from: objc-class-ref in ViewController.old: symbol(s) not found for architecture i386clang: error: linke原创 2014-10-10 14:12:30 · 415 阅读 · 0 评论 -
action响应bug
遇到一个奇怪的bug描述: tabbar点击切换的时候反应特别慢猜测原因:因为这个版本较上个版本主要增加了几个语言的国际化,还有推送功能。应该不是内存泄露的问题。今天查找原因,现在tabbar的点击方法里打印log,查看点击的时候是否触发了点击事件,发现有的时候没有触发,所以可以定位问题是tabbar View的响应有问题。后来发现是因为tabbar上的imageView添加了us转载 2015-10-08 11:51:14 · 448 阅读 · 0 评论