我正在使用 ECSliding,但我遇到了这个问题!
我有一个 topView 和两个菜单,
left (LeftViewController)
right (RightViewController)
两者UIViewController
。
我想在 AppDelegate 中提供对右视图控制器、左视图控制器的引用。
我在LeftViewController.h
:
#import "RightViewController.h"
@class RightViewController;
@property (strong, monatomic) RightViewController *rightView;
在didFinishLaunchingWithOptions
中AppDelegate.m
:
RightViewController *rightViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Right"];
LeftViewController *leftViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"Left"];
leftViewController.rightView = rightViewController;
但我得到这个错误AppDelegate.m
:self.storyboard
Property 'storyboard not found on object of type 'AppDelegate *
我怎么解决这个问题?