Skip to content

Commit

Permalink
Fix MultilineTextViewController behind ios 7 navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
jboehler committed Sep 24, 2013
1 parent e617f6c commit 3530700
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions quickdialog/QMultilineTextViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ - (void)loadView
self.view = _textView;
}

- (void)viewDidLoad
{
if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
self.edgesForExtendedLayout = UIRectEdgeNone;
}

- (void)viewWillAppear:(BOOL)animated
{
_viewOnScreen = YES;
Expand Down

0 comments on commit 3530700

Please sign in to comment.