码迷,mamicode.com
首页 > 其他好文 > 详细

Xcode7.0错误

时间:2015-11-03 10:28:45      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

昨天更新Xcode7.0之后,首先遇到了http请求的问题,百度了一下找到了解决方法,修改info.plist文件,info.plist-->Open As-->Souce Code  在</dict>之前添加

<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

然后继续运行APP,发现在使用delegate获取网络请求结果的时候,没有办法直接addsubview ,或者[self removeFromSuperview];

报错:This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes.  This will cause an exception in a future release.

 

解决:把代码写到GCD中(使用主线程更新UI)

        dispatch_async(dispatch_get_main_queue(), ^{

            // UI

            [self removeFromSuperview];

        });


Xcode7.0错误

标签:

原文地址:http://www.cnblogs.com/10-19-92/p/4932211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!