<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont

本文涉及的产品
转发路由器TR,750小时连接 100GB跨地域
简介: 接上次分享的自定义cell进行了优化:http://blog.csdn.net/qq_31810357/article/details/49611255指定根视图: self.


接上次分享的自定义cell进行了优化:http://blog.csdn.net/qq_31810357/article/details/49611255

指定根视图:

    self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[[RootTableViewController alloc] initWithStyle:UITableViewStylePlain]];

RootTableViewController.m

#import "WGModel.h"
#import "WGCell.h"

@interface RootTableViewController ()

@property (nonatomic, strong) NSMutableDictionary *dataDict;

@end

@implementation RootTableViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.dataDict = [NSMutableDictionary dictionary];
    
    [self.tableView registerClass:[WGCell class] forCellReuseIdentifier:@"cell"];
    [self loadDataAndShow];
}

请求数据:

- (void)loadDataAndShow
{
    NSURL *url = [NSURL URLWithString:@"http://api.breadtrip.com/trips/2387133727/schedule/"];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
       
        if (data != nil) {
            NSArray *array = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];
            for (NSDictionary *dict in array) {
                NSString *key = dict[@"date"];
                NSArray *placesArray = dict[@"places"];
                NSMutableArray *mutableArray = [NSMutableArray array];
                for (NSDictionary *placesDict in placesArray) {
                    WGModel *model = [[WGModel alloc] init];
                    [model setValuesForKeysWithDictionary:placesDict];
                    model.isShow = NO;
                    [mutableArray addObject:model];
                }
                [self.dataDict setObject:mutableArray forKey:key];
            }
            [self.tableView reloadData];
        }
        
        
    }];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return self.dataDict.allKeys.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSString *key = self.dataDict.allKeys[section];
    return [self.dataDict[key] count];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    WGCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    
    NSString *key = self.dataDict.allKeys[indexPath.section];
    NSMutableArray *mutableArray = self.dataDict[key];
    WGModel *model = mutableArray[indexPath.row];
    [cell configureCellWithModel:model];
    
    if (model.isShow == YES) {
        [cell showTableView];
    } else {
        
        [cell hiddenTableView];
    }
    
    return cell;
}

自适应高

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *key = self.dataDict.allKeys[indexPath.section];
    NSMutableArray *mutableArray = self.dataDict[key];
    WGModel *model = mutableArray[indexPath.row];
    if (model.isShow) {
        return (model.pois.count + 1) * 44;
    } else {
        return 44;
    }
}

点击cell会走的方法

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *key = self.dataDict.allKeys[indexPath.section];
    NSMutableArray *mutableArray = self.dataDict[key];
    WGModel *model = mutableArray[indexPath.row];
    model.isShow = !model.isShow;
    [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}

自定义cell

//.h
#import <UIKit/UIKit.h>
@class WGModel;
@interface WGCell : UITableViewCell<UITableViewDataSource, UITableViewDelegate>

@property (nonatomic, strong) UILabel *aLabel;
@property (nonatomic, strong) UITableView *tableView;


- (void)configureCellWithModel:(WGModel *)model;

- (void)showTableView;
- (void)hiddenTableView;

@end

//.m
#import "WGCell.h"
#import "WGModel.h"

@interface WGCell ()

@property (nonatomic, strong) NSMutableArray *dataArray;

@end

@implementation WGCell


- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        self.dataArray = [NSMutableArray array];
        [self addAllViews];
    }
    return self;
}

- (void)addAllViews
{
    self.aLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 44)];
    self.aLabel.backgroundColor = [UIColor greenColor];
    [self.contentView addSubview:self.aLabel];
    self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 44, [UIScreen mainScreen].bounds.size.width, 0) style:UITableViewStylePlain];
    
    self.tableView.delegate = self;
    self.tableView.dataSource = self;
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"testCell"];
//    [self.contentView addSubview:self.tableView];
}

- (void)showTableView
{
    [self.contentView addSubview:self.tableView];
}

- (void)hiddenTableView
{
    [self.tableView removeFromSuperview];
}

- (void)configureCellWithModel:(WGModel *)model
{
    [self.dataArray removeAllObjects];
    self.aLabel.text = model.place[@"name"];
    
    NSArray *array = model.pois;
    for (NSDictionary *dict in array) {
        NSString *str = dict[@"name"];
        [self.dataArray addObject:str];
    }
    CGRect frame = self.tableView.frame;
    frame.size.height = 44 * array.count;
    self.tableView.frame = frame;
    [self.tableView reloadData];
    
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return self.dataArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"testCell" forIndexPath:indexPath];
    NSString *str = self.dataArray[indexPath.row];
    cell.textLabel.text = str;
    return cell;
}





准备一个model类

//.h
#import <Foundation/Foundation.h>

@interface WGModel : NSObject

@property (nonatomic, assign) BOOL isShow;
@property (nonatomic, strong) NSDictionary *place;
@property (nonatomic, strong) NSArray *pois;

@end


//.m
#import "WGModel.h"

@implementation WGModel

- (void)setValue:(id)value forUndefinedKey:(NSString *)key
{
    
}

@end

最终效果:



每日更新关注:http://weibo.com/hanjunqiang  新浪微博


目录
相关文章
|
存储 Web App开发 监控
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
我们以前使用过的对hbase和hdfs进行健康检查,及剩余hdfs容量告警,简单易用 1.针对hadoop2的脚本: #/bin/bashbin=`dirname $0`bin=`cd $bin;pwd`STATE_OK=...
1056 0
|
Web App开发 前端开发 Java
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
 Connection reset by peer的常见原因: 1)服务器的并发连接数超过了其承载量,服务器会将其中一些连接关闭;    如果知道实际连接服务器的并发客户数没有超过服务器的承载量,看下有没有网络流量异常。
862 0
|
Web App开发 存储 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
NoSuchObjectException(message:There is no database named cloudera_manager_metastore_canary_test_db_hive_hivemetastore_df61080e04cd7eb36c4336f71b5a8bc4) at org.
1082 0
|
Web App开发 前端开发 数据库
|
Web App开发 存储 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
做大做强事实表,做小做弱维表; 分布式模式-维度建模新原则  (1)以值代键:针对键值唯一的维表,除非必要,否则不引入维表,如IP地址维表,采用IP作为维表的主键,事实表中存储IP值;      (2)合理分表:传统关系型数据仓库存在多表整合的冲动,如上图Event事实表,各种Acount Ind,Finance Ind等,用来扩展表的通用性,试图把所有的数据都存储到一张表 中。
788 0
|
Web App开发 监控 前端开发
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
Spark Streaming 的一些问题,做选型前关注这些问题可以有效的降低使用风险。 checkpoint checkpoint 是个很好的恢复机制。
939 0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
关于reduce边join,其最重要的是使用MultipleInputs.addInputPath这个api对不同的表使用不同的Map,然后在每个Map里做一下该表的标识,最后到了Reduce端再根据标识区分对应的表! ...
788 0
|
Web App开发 前端开发 大数据
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html><head><meta http-equiv="Cont
打算对新建的hadoop集群使用管理工具,列了以下主要的不同点: 主要的不同点 apache Ambari ClouderaManager Express(免费版) 配置版本控制和历史记录 支...
884 0