Reputation: 471
UIBarButtonItem *backButton = [[UIBarButtonItem alloc]
initWithImage:@"rGoBack"
style:UIBarButtonItemStylePlain
target:nil action:nil];
self.navigationItem.backBarButtonItem = backButton;
[backButton release];
I use this source. but It doesn't work. I don't know why not. please..
Upvotes: 0
Views: 1593
Reputation: 170829
From the first glance:
initWithImage:@"rGoBack"
here UIImage
parameter required and NSString
is passed instead. Try writing something like:
initWithImage:[UIImage imageNamed:@"rGoBack.png"]; // or whatever image name you have
Upvotes: 3