我有一张我已经通过代码使用我的应用程序的图像:
UIImage *image = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"building" ofType:@"png"]];
self.view.backgroundColor = [UIColor colorWithPatternImage:image];
我想在 UITabBar 中重用该图像。UITabBar 图像的属性检查器上有一个图像字段,当我在其中添加图像名称(building 或 building.png)时,图像不会呈现,但会呈现图像轮廓。
有谁知道为什么会发生这种情况以及如何让实际图像渲染?
谢谢!