gpt4 book ai didi

iphone - 多个TableView的标题中的标题

转载 作者:行者123 更新时间:2023-12-01 19:18:57 24 4
gpt4 key购买 nike

我知道一种为单个UITableView创建标题的方法:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

{
return @"My Title"
}

但是,如何为具有不同名称的多个UITableView设置标题?

提前致谢!!

最佳答案

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

{
if(tableView==myFirstTable)//myfirstTable is the IBOutlet of the tableView that is connected with your .xib
{
return @"Table1"
}

else
return @"Table2"

}

希望以上代码可以为您提供帮助。

关于iphone - 多个TableView的标题中的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11323088/

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