Created
November 16, 2011 10:04
-
-
Save zoul/1369738 to your computer and use it in GitHub Desktop.
IBOutlets in private interfaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "Foo.h" | |
// Private Foo interface. The IBOutlet will get picked up by Interface Builder! | |
@interface Foo () | |
@property(strong) IBOutlet UIView *someView; | |
@end | |
@implementation Foo | |
@synthesize someView; | |
… | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment