怎样让不要的tableviewcell 不显示出来
2个回答
2016-03-11 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
不显示出来就是隐藏cell,实现方法:
1、定义property:
@property (weak, nonatomic) IBOutlet UITableViewCell *hideCell;
self.daysCell.hide = YES; //设置这个cell是需要隐藏的
2、定义一个table view,处理以上cell为不显示:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell* cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
if(cell == self.hideCell)
return 0;
return [super tableView:tableView heightForRowAtIndexPath:indexPath];
1、定义property:
@property (weak, nonatomic) IBOutlet UITableViewCell *hideCell;
self.daysCell.hide = YES; //设置这个cell是需要隐藏的
2、定义一个table view,处理以上cell为不显示:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell* cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
if(cell == self.hideCell)
return 0;
return [super tableView:tableView heightForRowAtIndexPath:indexPath];
展开全部
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MWCell *cell = [MWCell cellWithTableView:tableView];
cell.textLabel.text = @"dasd";
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 200;
}
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MWCell *cell = [MWCell cellWithTableView:tableView];
cell.textLabel.text = @"dasd";
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 200;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询