मैं बिना किसी सफलता के एक नेविगेशन नियंत्रक के शीर्ष बार में एक ताज़ा बटन जोड़ने की कोशिश कर रहा हूं।
यहाँ हैडर है:
@interface PropertyViewController : UINavigationController {
}
यहाँ मैं इसे जोड़ने की कोशिश कर रहा हूँ:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Show" style:UIBarButtonItemStylePlain
target:self action:@selector(refreshPropertyList:)];
self.navigationItem.rightBarButtonItem = anotherButton;
}
return self;
}