How can I make a UIBarButtonItem like this:
I can\'t find it in the SystemItem
The Image button which you have called info button.It's an system button,
Use below to get it as your rightBarButtonItem
UIButton* myInfoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[myInfoButton addTarget:self action:@selector(InfoButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:myInfoButton];
Here is the documentation link to UIButtonType