怎样让不要的tableviewcell 不显示出来

 我来答
育知同创教育
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];
CHway2030
2015-07-06 · TA获得超过1.8万个赞
知道大有可为答主
回答量:2万
采纳率:6%
帮助的人:4565万
展开全部
- (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;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式