如何向 UITableView 添加描述

发布于 2024-11-09 01:51:13 字数 80 浏览 0 评论 0原文

如何在此图片中添加“加利福尼亚”等描述。

How can I to add a description like "California" in this image.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

相守太难 2024-11-16 01:51:13
- (NSInteger)numberOfSections
{
   return 1;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
   if (section == 0)
      return @"California";
   return nil;
}
- (NSInteger)numberOfSections
{
   return 1;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
   if (section == 0)
      return @"California";
   return nil;
}
久隐师 2024-11-16 01:51:13

它是你的表头。部分的表视图标题。您可以通过实现数据源方法来获得节标题

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

Its your table header. The table view header for sections. You can have section headers by implementing the datasource method

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
郁金香雨 2024-11-16 01:51:13

在 UITableViewDataSource(UITableView 的委托)中,

此方法控制节标题标题:

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

In your UITableViewDataSource (a delegate of the UITableView),

this method controls the section header titles:

 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
來不及說愛妳 2024-11-16 01:51:13

这是一个节标题。 UITableViewDelegate 方法是:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section  

That is a section header.The UITableViewDelegate Method is:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section  
離人涙 2024-11-16 01:51:13
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
 UIView * view = [uiview alloc]initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 90)];
then Create UIView in UILable ,UItextView etc...
}
then
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
 return 50;
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
 UIView * view = [uiview alloc]initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 90)];
then Create UIView in UILable ,UItextView etc...
}
then
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
 return 50;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文