gpt4 book ai didi

iphone - 表头和表格单元格之间的空间

转载 作者:行者123 更新时间:2023-12-03 19:52:16 25 4
gpt4 key购买 nike

我想增加 UITableView 的标题和单元格之间的间隙。

我搜索了很多,找到了这个解决方案,

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 20.0;
}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
//Adding UIView and it's Background Image...
UIView *tempView=[[UIView alloc]initWithFrame:CGRectMake(0,0,300,20)];
UIImageView *BgImg=[[UIImageView alloc]initWithFrame:CGRectMake(0,0,300,20)];
BgImg.image= [UIImage imageNamed:@"venueTitleBg.png"];
[tempView addSubview:BgImg];

//Adding UIImageView...
UIImageView *flag=[[UIImageView alloc]initWithFrame:CGRectMake(10,3,20,12)];
flag.image= [UIImage imageNamed:@"flag_small_united-kingdom.png"];
[tempView addSubview:flag];

//Adding UILabel...
UILabel *tempLabel=[[UILabel alloc]initWithFrame:CGRectMake(40,1,300,15)];
tempLabel.backgroundColor=[UIColor colorWithRed:15.0/255.0 green:15.0/255.0 blue:30.0/255.0 alpha:1.0];
tempLabel.textColor=[UIColor whiteColor];
tempLabel.font=[UIFont systemFontOfSize:11];
tempLabel.text=@"United Kingdom";
[tempView addSubview: tempLabel];

return tempView;
}

我尝试了这段代码,它在模拟器中工作正常,但没有显示任何空格, 当我在我的设备上运行它时。

这是模拟器的快照:(我可以看到标题和单元格之间的间隙..) :提前致谢。

最佳答案

试试这个:

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 50.0;
}

关于iphone - 表头和表格单元格之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17944460/

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