iOS UITableView 下拉问题,求思路
下拉后,背景里面的 logo 要出来, Google 和 stackoverflow 没有找到合适的答案
希望 V 友指导一下
1
regothic 2015-11-18 00:49:37 +08:00
置后一个 ImageView?
|
2
so898 2015-11-18 01:27:39 +08:00
UITableView 的 background color 设置为[UIColor clearColor]
在 UITableView 的后面放置一个 UIImageView 在我印象中还有中方法可以实现来着,但是比较蛋疼,基本上只有那些 Refresh 库才会用上…… |
3
zjmdp 2015-11-18 01:32:46 +08:00
UIImageView *tableViewBg = [[UIImageView alloc] initWithFrame: CGRectMake(x, x, x, x)];
[tableViewBg setImage:[UIImage imageNamed:@"xxx"]]; [self.tableView addSubview:tableViewBg]; |
4
tianshilei1992 2015-11-18 07:37:52 +08:00
想问一下,最上面这三个可以左右滑动的图片也是 Cell ?
|
5
zjmdp 2015-11-18 09:46:16 +08:00
@tianshilei1992 可以是 cell
|
6
qq2511296 2015-11-18 10:29:36 +08:00
UIImageView *imageView = [[UIImageView alloc]initWithFrame:_tableView.bounds];
[_tableView setBackgroundView:imageView]; |
7
tianshilei1992 2015-11-18 11:52:41 +08:00
@zjmdp 喔,好的,谢谢。
|
8
vileer 2015-11-19 00:37:06 +08:00
我来歪个楼,请问楼主这个 gif 用什么来录制的?
|