摘要: synthesis-of-weak-property-only-allowed-in-arc-or-gc-mode ARC属性错误提示:1:确认你的项目是 ARC环境;2:如果 ARC下出现上面的提示,那找到 项目里面 weak 的属性,改为 assign参考:http://stackoverflow.com/questions/18936209/synthesize-of-weak-property-is-only-allowed-in-arc-or-gc-mode-with-first-comp 阅读全文
posted @ 2014-01-18 13:19 cocoajin 阅读(535) 评论(0) 推荐(0)
摘要: iOS 本地通知 操作1:配置通知:然后退出程序;UILocalNotification *localNotif = [[UILocalNotification alloc] init];localNotif.fireDate = date; // date after 10 sec from nowlocalNotif.timeZone = [NSTimeZone defaultTimeZone];// Notification detailslocalNotif.alertBody = text; // text of you that you have fetched// Set t.. 阅读全文
posted @ 2014-01-18 11:20 cocoajin 阅读(301) 评论(0) 推荐(0)
摘要: iOS tabbar 图片,最佳大小方式文档大小 30 *30retaina 60 *60最佳大小 48 *32参考:http://stackoverflow.com/questions/151746/iphone-tab-bar-item-image-resolution 阅读全文
posted @ 2014-01-18 10:29 cocoajin 阅读(2247) 评论(0) 推荐(0)