Any luck if you specify @selector(refreshAction)
when you create the button, i.e.:
UIBarButtonItem *rButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refreshAction)];
Maybe the target doesn't get saved if you don't also specify the action to the initializer.
Daniel Dickison
2009-06-30 14:29:00