向 UIView 添加背景图像的正确方法是什么?

发布于 2024-11-09 22:02:04 字数 468 浏览 0 评论 0原文

在几个论坛上读到,使用“colorWithPatternImage”添加背景图像会比平常消耗更多的内存。

坏方法:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]]; 

更好的解决方案:

UIImageView* iv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.png"]]; iv.userInteractionEnabled = YES; 
self.view = iv; 
[iv release];

我对此有两个问题!哪种解决方案更好?为什么? 我还想弄清楚如何将标签放置在 imageView 的顶部。

Did read on couple of forums that adding a background image with "colorWithPatternImage" will consume more memory than usual.

The bad way:

self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]]; 

Better solution:

UIImageView* iv = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background.png"]]; iv.userInteractionEnabled = YES; 
self.view = iv; 
[iv release];

I have two question regarding this! which solution is better ? And why ?
I am also trying to figure out how to place my labels on the top of the imageView.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囚我心虐我身 2024-11-16 22:02:04
UIColor* tmpColor=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"background.png"]];  
self.view.backgroundColor=tmpColor;  
[tmpColor release];  
UIColor* tmpColor=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"background.png"]];  
self.view.backgroundColor=tmpColor;  
[tmpColor release];  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文