点击某一行,隐藏其他行



// LZTableViewController.h

#import <UIKit/UIKit.h>

@interface LZTableViewController : UITableViewController

@end

// LZTableViewController.m

#import "LZTableViewController.h"

@interface LZTableViewController ()

@property (nonatomic, assign) Boolean isShow;

@end

@implementation LZTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];

//    UITableView *tableView = [[UITableView alloc ]init];
//    self.tableView = tableView;
//    self.view = tableView;
    
    NSLog(@"%p--%p",self.tableView,self.view);
    
    self.isShow = YES;
}

#pragma mark - 数据源方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.isShow ? 3 : 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [[UITableViewCell alloc] init];
    cell.textLabel.text = [NSString stringWithFormat:@"love--%zd", indexPath.row];
    return cell;
}

#pragma mark - 代理
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
//    NSLog(@"%ld--%ld",indexPath.section,indexPath.row);
    self.isShow = !self.isShow;
    
//    NSLog(@"isShow = %zd", self.isShow);
    
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
    
    
//    if (self.isShow == NO) {
//        [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
//    } else {
//        
//        [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
////        [self.tableView reloadData];
//    }
}


@end


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容