我得到了想在导航控制器中使用的这张图片:
我是这样设置的(根据这个问题的建议):
UINavigationBar *theBar = self.navigationController.navigationBar;
if ( [theBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)] ) {
UIImage *image = [UIImage imageNamed:@"cabecalho.jpg"];
[theBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];
}
但是当我运行我的应用程序时,我得到了这个:
我该怎么做才能使我的图像适合导航控制器?
谢谢你。