- (void)applicationDidFinishLaunching:(UIApplication *)application {
self.tabBarController.customizableViewControllers=nil;
UIViewController * moreController =
[[self.tabBarController.moreNavigationController viewControllers] objectAtIndex:0] ;
UITableView * moreTableView = ( UITableView *) [moreController view];
[moreTableView setSeparatorColor:[UIColor redColor]];
[moreTableView setBackgroundColor:[UIColor yellowColor]];
}