You want to have a property in each of your controllers
@interface MyViewController : UIViewController{
NSString *title;
}
@property (retain) NSString *title;
@end;
@implementation MyViewController
@synthesize title;
@end;
Use it like:
MyViewController *myVC = [[MyViewController alloc] initWithFrame:...];
myVC.title = @"hello world";
You should be familiar with Memory Management
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…