Skip to content

Commit

Permalink
Fix layout issue during sign-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Erin-Mounts committed Nov 4, 2015
1 parent 028f1ac commit f07b03f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ - (void) viewDidLoad {
[self.emailTextField addTarget:self action:@selector(textFieldDidChange:) forControlEvents:UIControlEventEditingChanged];
}

- (void)viewWillAppear:(BOOL)animated
- (void)viewDidLayoutSubviews
{
[super viewWillAppear:animated];
[super viewDidLayoutSubviews];

UIEdgeInsets inset = self.tableView.contentInset;
self.tableView.contentInset = inset;
Expand Down

0 comments on commit f07b03f

Please sign in to comment.