1

有谁知道如何为 UINavigationController 后退按钮使用图标而不是文本?

替代文字 http://www.img-hosting.de/bilder/24505iPhoneSimulator2png

4

1 回答 1

2

试试这个:

UIBarItem *backBar = [[UIBarButtonItem alloc] initWithImage:yourImage style:UIBarButtonItemStyleDone target:nil action:nil];

self.navigationItem.backBarButtonItem = backBar;

[backBar release];

如果您需要更详细的内容,也可以使用 initWithCustomView

于 2009-09-07T14:10:36.917 回答