LoginSignup
17
17

More than 5 years have passed since last update.

iOS7でUIViewController上のUITableViewが上手く表示されないとき

Last updated at Posted at 2013-10-10

魔法の呪文

- (void)viewDidLoad
{
    [super viewDidLoad];

    if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
        self.edgesForExtendedLayout = UIRectEdgeNone;
        self.extendedLayoutIncludesOpaqueBars = NO;
        self.automaticallyAdjustsScrollViewInsets = NO;
    }
}

これでViewがNavigationBarの下に突っ込まなくなる。

参考:
http://stackoverflow.com/questions/18900428/ios-7-uitableview-shows-under-status-bar

17
17
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
17