-
Notifications
You must be signed in to change notification settings - Fork 135
Frequently Asked Questions
coneybeare edited this page Jan 23, 2012
·
4 revisions
You can create a new xib
for this interface and then inflate it in the subclass and set it's owner to the subclass, not the controller. In your subclass .h
file
@property (nonatomic, retain) IBOutlet UIView *myViewFromNib;
Dont forget to synthesize it and release it in your .m
file. Then in the xib
file (we'll call it myViewNib.xib
), make File's Owner an instance of your UAModalPanel Subclass and hook up the myViewFromNib
outlet to the main view in the nib. The load it in your subclass .m
file
[[NSBundle mainBundle] loadNibNamed:@"myViewNib" owner:self options:nil];
You can do this in a number of ways:
- If you create the button programmatically, just set the target and selector of the button to be one in the subclass.
- If loading from a nib, add an IBAction to the .h and .m files and hook it up to File's Owner
First, hook up the button to the subclass. The subclass will receive the button tap and then you can notify the controller through a couple different ways to call the method.
- Use NSNotificationCenter to send a notification that the button was tapped. Your controller should listen for this notification.
- Set the delegate of the subclass to be the controller, then call a method on the delegate.