20170816 Notes

来源:互联网 发布:mac os 进度条不动 编辑:程序博客网 时间:2024/06/15 07:54
  • 阻止iOS设备锁屏
[[ UIApplication sharedApplication] setIdleTimerDisabled:YES];
  • clang diagnostic 的使用

    • 基本格式
    #pragma clang diagnostic push#pragma clang diagnostic ignored "-相关命令"   // 操作的相关代码#pragma clang diagnostic pop
    • 忽略方法弃用
    #pragma clang diagnostic ignored "-Wdeprecated-declarations"
    • 忽略循环引用
    #pragma clang diagnostic ignored "-Warc-retain-cycles"
    • 忽略未使用的变量
    #pragma clang diagnostic ignored "-Wunused-variable"
    • 忽略未使用default
    #pragma clang diagnostic ignored "-Wcovered-switch-default"
  • pod install 或 update 的时候提示

    [!] Unable to find a specification for xxxx
    解决方案:
    $ pod repo remove master$ pod setup

原创粉丝点击