Sto cercando di aggiungere un pulsante di aggiornamento alla barra superiore di un controller di navigazione senza successo.
Ecco l'intestazione:
@interface PropertyViewController : UINavigationController {
}
Ecco come sto cercando di aggiungerlo:
- (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;
}