NSNibAwaking |
Mac OS X 10.0 |
This informal protocol declares the single method
awakeFromNib:, which is implemented by classes to
perform any final initialization for objects that are being loaded
from a nib. When this method is invoked, the outlets of an object are
guaranteed to be connected to their respective objects.
@interface NSObject (NSNibAwaking)
|
// Instance Methods |
- (void)awakeFromNib;
|
@end
|
|