LoginSignup
1
1

More than 5 years have passed since last update.

UITabBarControllerとloadViewとtabBar

Posted at

覚え書き?

おまかせself.view

- (void)loadView
{
  [super loadView];
  NSLog( @"tabBar=0x%08x", (unsigned)self.tabBar );
}
tabBar=0x0a2b6900

自前self.view

- (void)loadView
{
  self.view = [[[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame] autorelease];
  NSLog( @"tabBar=0x%08x", (unsigned)self.tabBar );
}
tabBar=0x00000000

tabBarが無い‥。

1
1
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
1
1