Вам необходимо создать UIButton
типа UIButtonTypeInfoLight
(или, в зависимости от цвета панели инструментов UIButtonTypeInfoDark
). Затем вы использовали бы эту кнопку как пользовательский вид для UIBarButtonItem
:
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
UIBarButtonItem *infoButtonItem = [[[UIBarButtonItem alloc] initWithCustomView:infoButton] autorelease];
myToolbar.items = [NSArray arrayWithObjects:infoButtonItem, nil];