Questions tagged «tableview»

10
像iPhone上的Facebook应用程序一样的SplitView
我想创建一个使用类似于链接中所示导航场景的iPhone应用程序 请注意,我不希望它仅适用于iPad,我希望它完全适用于iPhone,如图所示,当您单击表格视图项时,它将隐藏该表格视图并使该视图全屏显示。我想要有关如何执行此操作的想法,因为我自己无法解决。 谢谢


21
如何从UITableViewCell获取UITableView?
我有一个UITableViewCell链接到对象的对象,我需要确定单元格是否可见。根据我已经完成的研究,这意味着我需要以某种方式访问UITableView包含它的对象(从那里,有几种方法可以检查它是否可见)。所以我想知道是否UITableViewCell有指向的指针UITableView,或者是否还有其他方法可以从单元格中获取指针?

10
如何更改分组的UITableView标头的高度?
我知道如何在表格视图中更改节标题的高度。但是我找不到在第一节之前更改默认间距的任何解决方案。 现在我有以下代码: - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ if (section == 0){ return 0; } return 10; }

8
UITableView:从空白部分隐藏标题
我有一个UITableView,它显示了当月的费用(请参见屏幕截图): 我的问题是空白部分的标题。有什么办法藏起来吗?数据是从coredata加载的。 这是生成标题标题的代码: TitleForHeader -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{ if ([tableView.dataSource tableView:tableView numberOfRowsInSection:section] == 0) { return nil; } else { NSDate *today = [NSDate date ]; int todayInt = [dataHandler getDayNumber:today].intValue; NSDate *date = [NSDate dateWithTimeIntervalSinceNow:(-(todayInt-section-1)*60*60*24)]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setLocale:[[NSLocale alloc] initWithLocaleIdentifier:[[NSLocale preferredLanguages] objectAtIndex:0]]]; [dateFormatter setTimeStyle:NSDateFormatterNoStyle]; …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.