, IB IB.
, .
, BOOL, , , MyCustomViewController :
customViewController = [[MyCustomViewController alloc]initWithNibName:@"CustomViewController" bundle:nil];
[customViewController setFunky:YES]
- MyCustomViewDelegate. , :
@class MyCustomViewController;
@protocol MyCustomViewDelegate
@required
-(BOOL)customViewShouldBeFunky:(MyCustomViewController*)customView;
@end
@interface MyCustomViewController : UIViewController {
NSObject<MyCustomViewDelegate> *delegate;
}
@property (readwrite, retain) IBOutlet NSObject<MyCustomViewDelegate> *delegate;
@end
IBOutlet, , Interface Builder.
[delegate customViewShouldBeFunky:self], , .