I am setting the values of the title and back button in the UINavigationBar
as follows:
self.navigationItem.title = @\"Post\";
[self.navigationC
First of hide back button
self.navigationItem.hidesBackButton = YES;
Then You make the custom button
UIButton *leftbarButton = [UIButton buttonWithType:UIButtonTypeCustom];
leftbarButton.frame =CGRectMake(70, 3, 65, 32);
[leftbarButton setBackgroundImage:[UIImage imageNamed:@""] forState:UIControlStateNormal];
[leftbarButton addTarget:self action:@selector(leftbarbuttonclick) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *newdbutton =[[UIBarButtonItem alloc] leftbarButton];
AND add it to navigation left bar button item
self.navigationItem.leftBarButtonItem =newbutton;
Now add actions to it
-(void)leftbarbuttonclick {
// Your code
}