ECSliding を使用していますが、この問題があります。
topView と 2 つのメニューがあります。
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
しかし、私はon でこのエラーを受け取りますself.storyboard
:
Property 'storyboard not found on object of type 'AppDelegate *
どうすればこの問題を解決できますか?