Last active
June 5, 2016 11:11
-
-
Save olxios/d4543fcba9130f381797fcf28df400dc to your computer and use it in GitHub Desktop.
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 "PageItemController.h" | |
@implementation PageItemController | |
#pragma mark View Lifecycle | |
// *** | |
- (void)viewDidLoad | |
{ | |
[super viewDidLoad]; | |
_contentImageView.image = [UIImage imageNamed:_imageName]; | |
} | |
#pragma mark Content | |
// *** | |
- (void)setImageName:(NSString *)name | |
{ | |
_imageName = name; | |
_contentImageView.image = [UIImage imageNamed:_imageName]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment