Skip to content

Commit

Permalink
added a little text to say to press a key
Browse files Browse the repository at this point in the history
  • Loading branch information
joshaber committed Jul 5, 2011
1 parent 66ba4ba commit b5b6daf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PPTestViewController1.m
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ - (void)viewDidLoad {
[super viewDidLoad];

self.textRenderer = [[[TUITextRenderer alloc] init] autorelease];
self.textRenderer.attributedString = [TUIAttributedString stringWithString:@"First View Controller"];
self.textRenderer.attributedString = [TUIAttributedString stringWithString:@"First View Controller. Press any key to push a new view controller."];

self.view.textRenderers = [NSArray arrayWithObject:self.textRenderer];

Expand Down
2 changes: 1 addition & 1 deletion PPTestViewController2.m
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ - (void)viewDidLoad {
[super viewDidLoad];

self.textRenderer = [[[TUITextRenderer alloc] init] autorelease];
TUIAttributedString *attributedString = [TUIAttributedString stringWithString:@"Second View Controller"];
TUIAttributedString *attributedString = [TUIAttributedString stringWithString:@"Second View Controller. Press any key to pop this view controller."];
[attributedString setFont:[TUIFont fontWithName:@"HelveticaNeue" size:15.0f]];
self.textRenderer.attributedString = attributedString;

Expand Down

0 comments on commit b5b6daf

Please sign in to comment.