我的应用程序中有一个自定义标签栏。如何通过不同的标签导航时动画?这是我的代码
UIImage *image = [UIImage imageNamed:@"bgtab.png"];
[self.tabBarController.tabBar setBackgroundImage:image];
self.tabBarController.tabBar.tintColor =[UIColor brownColor];
self.tabBarController.tabBar.selectionIndicatorImage = [UIImage imageNamed:@"selected.png"];
apple docs说我们应该使用以下代码,但它不起作用
- (void)setItems:(NSArray *)items animated:(BOOL)animated