为什么Xcode不显示UIWebView的intellisense

时间:2012-03-29 17:19:09

标签: iphone ios xcode uiwebview

我刚创建了一个Xcode 4 Single View项目(没有故事板),拖放UIWebView然后开始输入

#import <UIKit/UIKit.h>

@interface myViewController : UIViewController

    IBOutlet UI...

@end

但是Xcode Intellisense只显示UIKit和UIViewController而不是UIWebView为什么?对不起,这是初学者的问题:)

2 个答案:

答案 0 :(得分:2)

这是因为ivars需要放在括号中。 Obj-c中的常规类/接口应该看起来像

@interface CLASSNAME (: PARENTCLASS)
{
   ivars;
}
- (returntype) instance methods/properties;
+ (returntype) class methods;
@end

答案 1 :(得分:1)

我猜,你没有包含标题。 XCode仅建议范围内的标识符。