0
我們如何在iPhone的導航欄中設置圖像?如何在Objective-C的導航欄的背景中設置圖像?
self.navigationController.navigationBar.tintColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"banner.png"]];`
我們如何在iPhone的導航欄中設置圖像?如何在Objective-C的導航欄的背景中設置圖像?
self.navigationController.navigationBar.tintColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"banner.png"]];`
UIImage *image = [UIImage imageNamed:@"yourImage.png"];
self.navigationItem.titleView = [[[UIImageView alloc] initWithImage:image] autorelease];
這使圖像在導航欄的標題。
這不適用於iOS 5。請參閱此答案以瞭解如何以適用於iOS5和以前版本的方式實現此功能。 Custom nav bar styling - iOS
這是一個更好的方式來做事情,並確保您的應用程序將在多個版本的iOS中工作。
[自定義導航欄樣式 - iOS]的可能重複(http://stackoverflow.com/questions/5575821/custom-nav-bar-styling-ios) –