gpt4 book ai didi

改变iOS应用中UITableView的背景颜色与背景图片的方法

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章改变iOS应用中UITableView的背景颜色与背景图片的方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

改变UITableView的header、footer背景颜色 。

改变UITableView的header、footer背景颜色,这是个很常见的问题。之前知道的一般做法是,通过实现tableView: viewForHeaderInSection:返回一个自定义的View,里面什么都不填,只设背景颜色。但是今天发现一个更简洁的做法:

对于iOS 6及以后的系统,实现这个新的delegate函数即可:

复制代码 代码如下:

- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section {
 view.tintColor = [UIColor clearColor];
}

还可以改变文字的颜色:

复制代码 代码如下:

- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section
{
 UITableViewHeaderFooterView *footer = (UITableViewHeaderFooterView *)view;
 [footer.textLabel setTextColor:[UIColor whiteColor]];
}

修改tableView的背景图片 。

  。

修改UITableView的背景图片 。

1.图片显示为'PatternImage'模式.

复制代码 代码如下:

// viewDidLoad 。

  。

self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"BackgroundImage"]],

// cellForRowAtIndexPath 。

cell.backgroundColor = [UIColor clearColor],

这种情况下背景图片像地板砖一样平铺。拉动tableView背景图片会随着动,若行数超过背景图片的高度,会接着显示下一张图片.

  。

2.正常的背景图片.

复制代码 代码如下:

// viewDidLoad 。

  。

self.tableView.backgroundColor= [UIColor clearColor],

UIImageView*imageView = [[UIImageView alloc]initWithImage:[UIImageimage Named:@"BackgroundImage"]],

self.tableView.backgroundView = imageView,

// cellForRowAtIndexPath 。

cell.backgroundColor = [UIColor clearColor],

这种情况下背景图片不会动,即无论多少行看到的都是同样的背景.

最后此篇关于改变iOS应用中UITableView的背景颜色与背景图片的方法的文章就讲到这里了,如果你想了解更多关于改变iOS应用中UITableView的背景颜色与背景图片的方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

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