美文网首页
xcode 常见错误

xcode 常见错误

作者: child_cool | 来源:发表于2017-07-24 18:31 被阅读32次

    使用企业账号打包时
    Provisioning profile “唯一标识符” doesn't include signing certificate “企业账号”.
    问题原因:配置证书选择的根证书有误
    解决方法:对配置证书进行编辑然后更改根证书,重新下载安装,然后选择就ok


    5D9E9BAC-FC2E-4B34-B6A1-BF2DF7563E74.png

    在真机调试过程中


    567E269A-7193-4E84-BEC1-9C4AEF32AD8F.png

    问题原因:这是正在对手机进行缓存配置,需要一些时间,耐心的等一下,最上面是有进度提示的

    我使用 [self.view endEditing:YES]; 结束编辑状态时
    错误:-[UIKeyboardTaskQueue waitUntilAllTasksAreFinished] may only be called from the
    解决方法:
    dispatch_async(dispatch_get_main_queue(), ^{
    //回调或者说是通知主线程刷新,
    [self.view endEditing:YES];
    });

    相关文章

      网友评论

          本文标题:xcode 常见错误

          本文链接:https://www.haomeiwen.com/subject/riabkxtx.html