Вы можете создать подкласс UINavigationController
, добавить общий код и заставить все контроллеры представления вашей вкладки использовать этот подкласс.Так, например, вы можете сделать:
@implementation MyNavController : UINavigationController {
NSString *foo;
}
- (id)initWithFoo:(NSString *)aFoo;
@end
и реализовать initWithFoo
вроде:
- (id)initWithFoo:(NSString *)aFoo {
if (self = [super init]) { // or whatever init method you want to use for UINavigationController
foo = [aFoo retain];
}
return self;
}
Надеюсь, это поможет!