Skip to content

Instantly share code, notes, and snippets.

@ecgreb
Last active December 17, 2015 03:19
Show Gist options
  • Save ecgreb/5542163 to your computer and use it in GitHub Desktop.
Save ecgreb/5542163 to your computer and use it in GitHub Desktop.
@implementation HelloTDDViewController
- (void)viewDidLoad {
[super viewDidLoad];
_nameField.accessibilityLabel = @"Name";
_helloLabel.accessibilityLabel = @"Greeting";
GreetingFactory *greetingFactory = [[GreetingFactory alloc] init];
_delegate = greetingFactory;
}
//...
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment