#include <UIKit/UIKit.h>
这一行即可。
2. 如果object-c文件里出现 cannot find protocol UIAlertViewDelegate 类似的错误,也可以在.m或者.h中加入
#include <UIKit/UIKit.h>
这一行。
3. 如果编译的时候发现有 semantic issue,mach-o linker error的错误,那一般把文件加到targets->Build Phases->Compile Sources中就可以了。
原文链接:https://www.f2er.com/swift/326611.html