ios数据库

摘要: #define DATABASE_PATH [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0]stringByAppendingString:@"/healthCloud.db”]用于... 阅读全文
posted @ 2014-11-29 10:17 李小忠 阅读(114) 评论(0) 推荐(0) 编辑

iOS一些常见配置

摘要: 关于Xcode的Other Linker Flags背景在ios开发过程中,有时候会用到第三方的静态库(.a文件),然后导入后发现编译正常但运行时会出现selector not recognized的错误,从而导致app闪退。接着仔细阅读库文件的说明文档,你可能会在文档中发现诸如在Other Lin... 阅读全文
posted @ 2014-11-26 20:07 李小忠 阅读(107) 评论(0) 推荐(0) 编辑

NSDate使用大全

摘要: #define kDEFAULT_DATE_TIME_FORMAT (@"yyyy-MM-dd HH:mm:ss")//获取当前日期,时间+(NSDate *)getCurrentDate{NSDate *now = [NSDate date];return now;}//将日期转换为字符串(日期,... 阅读全文
posted @ 2014-11-25 10:28 李小忠 阅读(148) 评论(0) 推荐(0) 编辑