try to do this:
UIBarButtonItem *customItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"imageName.png"] style:UIBarButtonItemStyleBordered target:self action:@selector(nameOfSomeMethod:)]; self.navigationItem.leftBarButtonItem = customItem; [customItem release];
This will place your custom button on the left side of the navigation bar.
Greetings
Vfn
source share