iOS中 自定义cell升级版 (高级)

接上次分享的自定义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 
新浪微博

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-13 00:03:27

iOS中 自定义cell升级版 (高级)的相关文章

iOS中 自定义cell分割线/分割线偏移 韩俊强的博客

在项目开发中我们会常常遇到tableView 的cell分割线显示不全,左边会空出一截像素,更有甚者想改变系统的分割线,并且只要上下分割线的一个等等需求,今天重点解决以上需求,仅供参考: 每日更新关注:http://weibo.com/hanjunqiang  新浪微博! 1.cell 分割线不全: 解决方案1: 补全分割线 -(void)viewDidLayoutSubviews { if ([_listTableView respondsToSelector:@selector(setSep

iOS中 UITableViewCell cell划线那些事 韩俊强的博客

每日更新关注:http://weibo.com/hanjunqiang 在开发中经常遇到cell分割线显示不全或者想自定义线的宽高等; 最近总结了一下,希望帮到大家: 1.不想划线怎么办? TableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; // 设置系统默认线的样式 -(void)viewDidLayoutSubviews { if ([TableView respondsToSelector:@selecto

iOS 获取自定义cell上按钮所对应cell的indexPath.row的方法

在UITableView或UICollectionView的自定义cell中创建一button,在点击该按钮时知道该按钮所在的cell在UITableView或UICollectionView中的行数.就是cell的 indexPath.row,下面以UITableView为例: 有两种方法: -(IBAction):(id)sender { 1. 第一种方法,这个方便一点点,不用设置tag. NSLog(@"MyRow:%d",[self.table indexPathForCell

iOS 代码自定义cell示例

底色标黄为代码自定义cell重点处,入手从这几点即可. MyCell.h #import <UIKit/UIKit.h> @interface MyCell :UITableViewCell @property(nonatomic,strong)UILabel *ageLabel; @property(nonatomic,strong)UILabel *nameLabel; @property(nonatomic,strong)UILabel *additionLabel; - (instan

iOS UI09_自定义cell

// // MyCell.h // UI09_自定义cell // // Created by dllo on 15/8/10. // Copyright (c) 2015年 zhozhicheng. All rights reserved. // #import <UIKit/UIKit.h> @interface MyCell : UITableViewCell #warning 现在要给自定义的cell加上四条属性,而且需要在外部进行赋值,所以在.h中写属性声明,而且这四个属性,他们的名

iOS 中自定义TableViewCell方法

自定义cell时需要继承UITableViewCell. 举例:ZLSchoolListTableCell继承UITableViewCell ZLSchoolListTableCell.h文件 #import <UIKit/UIKit.h> @class SchoolModel(模型); @interface ZLSchoolListTableCell : UITableViewCell +(instancetype)SchoolListWithTableView:(UITableView*)

iOS中自定义UIView(用接口获取Lable和TextFile中的值)

NSArray *arrayText = @[@"用户名",@"密码",@"确认密码",@"手机号",@"邮箱"]; NSArray *placeholders = @[@"请输入用户名",@"请输入密码",@"请确认密码",@"请输入手机号",@"请输入邮箱"]; NSInteger y = 30; for

在iOS中对cell进行局部截图

今天在开发过程中遇到了一个问题,就是需要对某个控件单独进行截图.如果是对屏幕进行截图,相信大家都很熟悉,但是对于单独的一个控件呢?比如就以最通常的UITableViewCell来说,因为cell是最常用的控件之一,如果懂得了它的截图,那么其他控件也就迎刃而解. 这点苹果似乎已经帮我们想好了,如果您支持的iOS7及以上的系统,那么只需要调用一行代码即可. UIView *snapshot = [theCell snapshotViewAfterScreenUpdates:YES]; 是不是很方便?

OC TableView中自定义Cell实现文字滚动效果

需求:有一个动态需要更新的TableView,每一个Cell显示的内容从网络获取,并且Cell中有一个需要显示文字的Label,当文字太长的时候,不能完全显示,所以采用跑马灯的样式 实现:1. IB的方式(??) 2.纯代码(?) IB的层次关系 实现的功能: 1.动态获取文字的实际长度 2.设置滚动的收尾位置 代码: 1.TitleRolling.h @interface TitleRolling : UIViewController -(void) startScroll : (UIScro