Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.36 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Animate through tabs in a custom UITabBar
  2. UIImage *image = [UIImage imageNamed:@"bgtab.png"];
  3. [self.tabBarController.tabBar setBackgroundImage:image];
  4. self.tabBarController.tabBar.tintColor =[UIColor brownColor];
  5. self.tabBarController.tabBar.selectionIndicatorImage = [UIImage imageNamed:@"selected.png"];
  6.        
  7. - (void)setItems:(NSArray *)items animated:(BOOL)animated