在 FatEditViewController 中,有一个自定义的 UIView。
FatEditViewController.h
#import <UIKit/UIKit.h>
@interface FatEditViewController
@property (weak, nonatomic) IBOutlet UIView *myview;
@end
在另一个 UIViewController 中,我想获取 myview 对象。我喜欢这样:
FatEditViewController *vc = [self.storyboard instantiateViewControllerWithIdentifier:@"FatEdit"];
UIView *view = [vc myview];
NSLog(@"%@, %@", vc,view);
myview 为空。如何获得 myview?