动态修改uitabbar的数量

UITabBarController *tabBarController= (UITabBarController *)[UIApplication sharedApplication].delegate.window.rootViewController;

NSMutableArray *tabbarViewControllers= [NSMutableArray arrayWithArray: [tabBarController viewControllers]];

[tabbarViewControllers removeObjectAtIndex:1];

[tabBarController setViewControllers: tabbarViewControllers ];

你可能感兴趣的:(动态修改uitabbar的数量)