我刚创建了一个Xcode 4 Single View项目(没有故事板),拖放UIWebView然后开始输入
#import <UIKit/UIKit.h>
@interface myViewController : UIViewController
IBOutlet UI...
@end
但是Xcode Intellisense只显示UIKit和UIViewController而不是UIWebView为什么?对不起,这是初学者的问题:)
答案 0 :(得分:2)
这是因为ivars需要放在括号中。 Obj-c中的常规类/接口应该看起来像
@interface CLASSNAME (: PARENTCLASS)
{
ivars;
}
- (returntype) instance methods/properties;
+ (returntype) class methods;
@end
答案 1 :(得分:1)
我猜,你没有包含标题。 XCode仅建议范围内的标识符。