iOS:UIToolbar setBackgroundImage不工作

iOS:UIToolbar setBackgroundImage不工作,ios,uitoolbar,Ios,Uitoolbar,我无法更改uitoolbar背景图像。给出了错误 UIImage *navBackgroundImage = [UIImage imageNamed:@"bartop.png"]; [[UIToolbar appearance] setBackgroundImage:navBackgroundImage forBarMetrics:UIBarMetricsDefault]; 这个导航条形码正在工作 UIImage *navBackgroundImage = [UIImage imageName

我无法更改uitoolbar背景图像。给出了错误

UIImage *navBackgroundImage = [UIImage imageNamed:@"bartop.png"];
[[UIToolbar appearance] setBackgroundImage:navBackgroundImage forBarMetrics:UIBarMetricsDefault];
这个导航条形码正在工作

UIImage *navBackgroundImage = [UIImage imageNamed:@"bartop.png"];
[[UINavigationBar appearance] setBackgroundImage:navBackgroundImage forBarMetrics:UIBarMetricsDefault];
但此工具栏代码不起作用,并出现错误

UIImage *navBackgroundImage = [UIImage imageNamed:@"bartop.png"];
[[UIToolbar appearance] setBackgroundImage:navBackgroundImage forBarMetrics:UIBarMetricsDefault];
我的错在哪里


更新:

此代码正在运行:

UIImage *testimage = [[UIImage imageNamed:@"bartop"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
[[UIToolbar appearance] setBackgroundImage:testimage forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault];
[[UIToolbar appearance] setBackgroundImage:testimage forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsLandscapePhone];

根据文档,需要与UIToolbar一起使用的方法是

- setBackgroundImage:(UIImage *)backgroundImage forToolbarPosition:(UIToolbarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics
您正在使用

- setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics
试着使用它,看看它是否适合你


.

根据文档,需要与UIToolbar一起使用的方法是

- setBackgroundImage:(UIImage *)backgroundImage forToolbarPosition:(UIToolbarPosition)topOrBottom barMetrics:(UIBarMetrics)barMetrics
您正在使用

- setBackgroundImage:(UIImage *)backgroundImage forBarMetrics:(UIBarMetrics)barMetrics
试着使用它,看看它是否适合你


.

您不应该添加图像扩展名.png,因为2x将被忽略。它不起作用,我仍然收到错误。这不是问题的答案,这只是一个信息:pOh,非常感谢D@AnoopVaidya我总是使用带有
UIImage
的扩展名,@2x工作得很好。你不应该添加图像扩展名.png,因为它会忽略2x。它不工作,我仍然会收到错误。这不是问题的答案,这只是一个信息:pOh,非常感谢D@AnoopVaidya我总是使用带有
UIImage
的扩展,@2x工作得很好。