我有一个 ViewController 类(也许我不应该那样命名那个类?)
为什么我有警告
从 AppDelegate 中的“UIViewController”分配给“ViewController”的指针类型不兼容
更新:
在这条线上
self.viewController = [[[myPlugin alloc] getPluginViewController] autorelease];
在 AppDelegate.h 我有
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@end
在 myPlugin 我有
-(ViewController*) getPluginViewController {
self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController" bundle:nil] autorelease];
return self.viewController;
在 ViewController 我有
@interface ViewController : UIViewController {