IOS
TragicEnding
这个作者很懒,什么都没留下…
展开
-
TextArea输入变化事件,支持IOS中文手写
Setting in HTML oninput="javascript: inputChange();"> Function in JavaScript function inputChange() { // edit your code here }原创 2013-07-27 21:44:59 · 1198 阅读 · 0 评论 -
[ios] release version 不输出 logs
edit in project_name-Prefix.pch add below into file #ifdef __OBJC__ #import #import #endif #ifndef __OPTIMIZE__ #define NSLog(...) NSLog(__VA_ARGS__) #else #define NSLog(...) {} #endif转载 2014-12-26 11:03:52 · 560 阅读 · 0 评论 -
[ios] tableView:cellForRowAtIndexPath: unrecognized selector sent to instance
问题代码 nextViewController = [storyboard instantiateViewControllerWithIdentifier:NEXT_VIEW_ID]; [navigationController setViewControllers:[NSArray arrayWithObjects:nextViewController, nil] animated:YES原创 2015-03-24 15:00:22 · 671 阅读 · 0 评论 -
[ios] compile exception about ARC
原因: 开启了ARC 解决: project -> Build Settings -> Apple LLVM 6.0 - Language - Object C -> Object-C Automatic Reference Counting -> set "NO"原创 2015-06-18 10:49:56 · 538 阅读 · 0 评论