为了账号安全,请及时绑定邮箱和手机立即绑定

iOS 7-如何在表格视图中显示日期选择器?

iOS 7-如何在表格视图中显示日期选择器?

MYYA 2019-11-05 10:51:34
在WWDC 2013视频中,Apple建议在iOS 7的表格视图中就位显示选择器。如何在表格视图单元格之间插入视图并为其设置动画?
查看完整描述

3 回答

?
守着一只汪

TA贡献1872条经验 获得超3个赞

使用情节提要和静态表,我可以使用以下代码获得相同的结果。这是一个很好的解决方案,因为如果您有许多形状奇怪的单元格,或者想让多个单元格动态显示/隐藏,那么此代码仍然可以使用。


@interface StaticTableViewController: UITableViewController


@property (weak, nonatomic) IBOutlet UITableViewCell *dateTitleCell; // cell that will open the date picker. This is linked from the story board

@property (nonatomic, assign, getter = isDateOpen) BOOL dateOpen;


@end



@implementation StaticTableViewController


-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{


    // This is the index path of the date picker cell in the static table

    if (indexPath.section == 1 && indexPath.row == 1 && !self.isDateOpen){

        return 0;

    }

    return [super tableView:tableView heightForRowAtIndexPath:indexPath];

}


-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];

    [tableView beginUpdates];

    if (cell == self.dateTitleCell){

        self.dateOpen = !self.isDateOpen;

    }

    [tableView reloadData];

    [self.tableView endUpdates];

}


查看完整回答
反对 回复 2019-11-05
  • 3 回答
  • 0 关注
  • 655 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信