gpt4 book ai didi

iphone - iOS 6 : background imageview in iPhone 5

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:48:08 25 4
gpt4 key购买 nike

在我的 iphone 应用程序中,我使用背景图像 bg.png(用于视网膜尺寸 bg@2x.png)。我将 xcode 更新为 4.5。现在我需要安排 UI 以适合 iPhone 5 - 4 英寸显示屏。由于框架高度将变为 568,我需要修复我的背景也具有 568 的高度。我在我的应用程序中添加了一个名为 bg-568h@2x.png 的图像。但是我没有在 xcode 中为 iPhone 6 模拟器获取此图像。有没有办法得到这个图像?或者我怎样才能做到这一点?

最佳答案

试试这个动态代码....

self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"bg.png"]];

这会造成内存泄漏。要么将 initWithPatternImage 更改为 colorWithPatternImage,要么将 UIColor 对象分配给一个变量并适本地释放它:

UIColor *color = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"bg.png"]];
self.view.backgroundColor = color;
[color release];

关于iphone - iOS 6 : background imageview in iPhone 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12779304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com