IOS 设置背景图片
发布日期:2021-09-28 18:46:16 浏览次数:12 分类:技术文章

本文共 1066 字,大约阅读时间需要 3 分钟。

1.uiscrollview 设置背景图片
// Setup the Scroll ViewUIScrollView*tempScrollView=(UIScrollView*)self.view;tempScrollView.contentSize=CGSizeMake(320,720);// Set Stationary Background, so that while the user scroll the background is// fixed.UIImage*img =[UIImage imageNamed:@"bg-body.jpg"];[tempScrollView setBackgroundColor:[UIColor colorWithPatternImage:img]];

 

2. uiview 设置背景图片

self.view.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@"1.jpg"] ];

 

3. 个人比较推荐下面几种

    在uiview设置背景图片

UIImageView* bgview = [[UIImageView alloc]initWithImage:TTIMAGE(@"bundle://uiscrollviewbg1.jpg")];        bgview.frame = CGRectMake(0, 0, scrollView.frame.size.width, scrollView.frame.size.height);        [self addSubview:bgview];        [bgview release];

 

  在uiscrollview设置背景图片

UIImageView* bgview = [[UIImageView alloc]initWithImage:TTIMAGE(@"bundle://uiscrollviewbg.png")];        bgview.frame = CGRectMake(0, -100, 320, 100);        [_scrollView addSubview:bgview];        [bgview release];

最后可以通过:

[self.view sendSubviewToBack:bgview];

或者

bringSubviewToFront方法修改addView的层级

转载地址:https://blog.csdn.net/h3c4lenovo/article/details/8424550 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:IOS 雪花飘落效果
下一篇:IOS 内存释放

发表评论

最新留言

表示我来过!
[***.240.166.169]2024年04月17日 22时25分51秒