Skip to content

Commit

Permalink
Added missing call to [super viewWillAppear:]
Browse files Browse the repository at this point in the history
Fixes issue 7.
  • Loading branch information
pocketpixels committed Jan 31, 2012
1 parent f6c0750 commit a3fd6d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions PhotoAppLink/PALMoreAppsController.m
Expand Up @@ -90,6 +90,7 @@ - (void)applicationDidBecomeActive

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if ([self respondsToSelector:@selector(setContentSizeForViewInPopover:)]) {
CGSize measuredSize = [self.tableView sizeThatFits:CGSizeMake(320.0, 850.0)];
float popoverWidth = 320;
Expand Down

0 comments on commit a3fd6d9

Please sign in to comment.