我不确定我做错了什么。文件名正确,样式设置为plain。但是我得到了一个和我的图像一样大小的银行白盒。我正在使用 UINavigationController。
请协助并谢谢您提前谢谢。
**仅供参考,我对目标 c 有点陌生,所以不要对我太苛刻。;)
UIBarButtonItem *toolbarChannelGuideButton = [[UIBarButtonItem alloc]
initWithImage:[UIImage imageNamed:@"channel-guide-button.png"]
style:UIBarButtonItemStylePlain
target:self
action:@selector(action:)];
self.toolbarItems = [NSArray arrayWithObjects:toolbarChannelGuideButton, nil];
[toolbarChannelGuideButton release];