上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: http://www.raywenderlich.com/zh-hans/22873/ios-6-自动布局-入门-1 阅读全文
posted @ 2013-09-25 17:31 有妄想症的猫zz 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 在 iTouch4 或者相差不多的 iPhone 上,不建议在 UIViewController 的 viewWillAppear 的方法中放置 UITableView 的 reloadData 方法,尤其 Cell 定制的较为复杂且含有图片的时候。为每个 Cell 加载内容在这些内存并不是很够的机器上运行相当吃力,严重点会感觉卡了十几秒,尤其现在仍然在使用的这些设备都有了些年头,性能上多少不足。对于 [UITableView reloadData] 的调用,也应该在必要的时候执行,频繁的执行与[UIViewController viewWillAppear:] 中写入该方法没有差别,应该适当 阅读全文
posted @ 2013-09-25 16:29 有妄想症的猫zz 阅读(1717) 评论(0) 推荐(0) 编辑
摘要: 代码写久了,连最基本的语法都忘记了。 for (id obj in self.mapView.annotations) { if ([obj class] == [MKUserLocation class]) { break; } [self.mapView removeAnnotation:obj]; }这是项目中的一段代码,目的是去除自己当前位置意外的annotationView,结果总是非自己所愿。因为是简单不过的代码,没有多想,加入log才发现,整个循环并不能总是执行完毕,大部分都会在中间的某个... 阅读全文
posted @ 2013-09-25 11:20 有妄想症的猫zz 阅读(231) 评论(0) 推荐(0) 编辑
摘要: Q:I'm getting an assertion failure while scrolling a picker view w/ zero data(zero rows). While scrolling the picker view I'm getting this crash. Testing on iOS 6* Assertion failure in -[UITableViewRowData rectForRow:inSection:], /SourceCache/UIKit_Sim/UIKit-2372/UITableViewRowData.m:1630* T 阅读全文
posted @ 2013-09-25 09:34 有妄想症的猫zz 阅读(667) 评论(0) 推荐(0) 编辑
摘要: http://www.vinqon.com/codeblog/?detail/11109 阅读全文
posted @ 2013-09-24 11:44 有妄想症的猫zz 阅读(134) 评论(0) 推荐(0) 编辑
摘要: if (__IPHONE_OS_VERSION_MAX_ALLOWED <= __IPHONE_6_1) { self.navigationController.navigationBar.translucent = NO; self.navigationController.toolbar.translucent = NO; } 阅读全文
posted @ 2013-09-24 10:51 有妄想症的猫zz 阅读(400) 评论(0) 推荐(0) 编辑
摘要: Xcode 5.0 默认的编译环境是iOS7,编译出来的app,安装到iOS7.0版本以上的手机上,会表现出iOS7.0的风格。兼容不太好的应用,布局上可能会因此乱八七糟。如果还不想让app升级到iOS7.0,以保持iOS6.1或以下版本的风格,那么可以这样:下载好iOS6.1 SDK(或其他非iOS7.0 SDK,如果找不到下载路径,可以从之前的低版本的Xcode中拷贝出来),复制到Xcode 5.0目录下,具体路径为:“Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sd 阅读全文
posted @ 2013-09-23 16:20 有妄想症的猫zz 阅读(2566) 评论(0) 推荐(1) 编辑
摘要: I am working on iPhone app named "INTERSTIZIO".In this I have implemented functionality like chat between users.In this user can send text,location and text with emojis symbol.If the app is not in open mode at receiver end then from backend push is generated and display to receiver.I am ab 阅读全文
posted @ 2013-09-16 15:12 有妄想症的猫zz 阅读(904) 评论(0) 推荐(0) 编辑
摘要: 常用URL scheme查询 http://handleopenurl.com/schemeQQ: mqq://新浪微博: weibo:// (sinaweibo://)腾讯微博: tencentweibo:// 阅读全文
posted @ 2013-09-10 15:33 有妄想症的猫zz 阅读(3906) 评论(0) 推荐(0) 编辑
摘要: Creating a WorkspaceStart a multiproduct development endeavor by creating a workspace.1.Choose File > New > New Workspace.2.Enter the workspace name, and specify its location in your file system.3.Click Save.A workspace serves as a common container for several related projects.Xcode uses the w 阅读全文
posted @ 2013-08-28 14:10 有妄想症的猫zz 阅读(705) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页