Saya mencoba menambahkan tombol segarkan ke bilah atas pengendali navigasi tanpa hasil.
Inilah tajuknya:
@interface PropertyViewController : UINavigationController {
}
Inilah cara saya mencoba menambahkannya:
- (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;
}