Xcode卡顿 编译问题

Xcode卡顿

Masonry 大量使用时导致Xcode在New build system编译卡顿

原因:

#import "View+MASAdditions.h"
#import "ViewController+MASAdditions.h"

这两个文件方法实现放在了.h文件中

解决方案:
使用

pod 'Masonry', :git=> "https://github.com/warpling/Masonry.git", :branch=> "master"

或者
创建上面两个文件对应的.m文件,并把实现部分放到.m中

上一篇:如何在iOS手机上进行自动化测试


下一篇:从零开始学JVM系列(五):搭建HotSpot源码阅读环境