iOS 8 Expected a type:微信SDk报错解决

来源:互联网 发布:西西里美丽的传说 知乎 编辑:程序博客网 时间:2024/06/03 08:26

If you check the docs for UIImage you'll see it's in UIKit, not Foundation. The docs are now all targeted at Swift, which is somewhat annoying, but you'll see the import statement in the docs is specified as

@import UIKit;

In objective-c, that translates to

#import <UIKit/UIKit.h> 
阅读全文
1 0