Cocoa touch iOS 5中的自定义导航栏

Cocoa touch iOS 5中的自定义导航栏,cocoa-touch,uinavigationcontroller,ios5,Cocoa Touch,Uinavigationcontroller,Ios5,我使用一个类来设置iOS 5中导航控制器的样式。我遇到的问题是自动创建的moreNavigationController。我找到了一种设计moreNavigation的方法 if ([[[UIDevice currentDevice] systemVersion] intValue] >= 5.0){ [self.rootController.moreNavigationController.navigationBar setBackgroundImage: [UIImag

我使用一个类来设置iOS 5中导航控制器的样式。我遇到的问题是自动创建的moreNavigationController。我找到了一种设计moreNavigation的方法

if ([[[UIDevice currentDevice] systemVersion] intValue] >= 5.0){
    [self.rootController.moreNavigationController.navigationBar setBackgroundImage:     [UIImage imageNamed:@"noten_header.png"] forBarMetrics:UIBarMetricsDefault];
}
但是我不知道我如何设置moreNavigationController的编辑视图的样式(如果您在“更多”选项卡上并单击编辑按钮)。除了创建新的moreNavigationController之外,还有其他想法吗