简体   繁体   中英

Icons are not showing in the UITab bar

Icons are not showing in the UITab bar instead some rectangles are showing. What could be the problem?

My code:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
   self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  if (self) {
    self.tabBarItem.image = [UIImage imageNamed:@"poolmate.png"];
}
return self;
}

You never initialized your tabBarItem . Try this:

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        self.tabBarItem = [self tabBarItem];
        self.tabBarItem.image = [UIImage imageNamed:@"poolmate.png"];
    }
    return self;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM