Estoy tratando de agregar un botón de actualización a la barra superior de un controlador de navegación sin éxito.
Aquí está el encabezado:
@interface PropertyViewController : UINavigationController {
}
Así es como estoy tratando de agregarlo:
- (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;
}