You will need to specify a name and implementation for the button method. Since there is no standard method.
self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStylePlain target:self action:@selector(backButtonPressed)] autorelease];
implementation.
-(void) backButtonPressed { NSLog(@"Back button presses"); }
source share