tableView 프록시를 Controller에서 꺼내기

5015 단어
컨트롤러에 코드가 너무 많아서 이 문제는 줄곧 있었다. 그 중에서 가장 심각한 추정은 바로tableView의 에이전트이다. 우리가 페이지에tableView를 추가할 때마다 에이전트만 실현하면 50줄에 가까운 코드를 추가해야 한다. 그리고 이 코드는 전체 프로그램에서 대량으로 반복된다.(tableView 사용량이 너무 많은 덕분).그것은tableView의 두 에이전트를 따로 꺼내서 쓸 수 있습니까? 그러면 컨트롤러의 코드를 줄일 수 있습니다.코드의 중복을 줄이기 위해 통용되는 프록시 클래스를 봉인하는 것이 좋다.당연하죠. 다음은 제가 쓴 이걸 말씀드릴게요. 하나도 못 썼어요. 아직 생각하지 못한 친구들에게 아이디어를 줘도.
저희가 평소에 대리를 어떻게 썼는지 한번 생각해볼게요.
tableView.delegate = self;
tableVIew.dataSource = self;

그리고 나서 컨트롤러에 에이전트를 쓰기 시작했습니다. 물론 이 에이전트가 가리키는 self를 우리가 만든 대상으로 바꿀 수도 있습니다. 그러면 다른 종류가 이tableView의 에이전트를 실현할 수 있습니다.(ps: 여기 구덩이가 있어요. 에이전트가 한 대상을 가리키는데 그를 가지고 있지 않아요. 그래서 에이전트를 실현하는 대상은 전체적인 속성을 만들어야 해요. 그렇지 않으면 현재의 방법을 지나가면 방출되고 테이블이 에이전트가 없어서 결과가 심각해요.우리는tableView 에이전트를 실현하는 클래스를 만듭니다. 제 이름은 TableView Interface입니다. (아버지의 이름을 무시합니다.) 그리고 이 안에 에이전트를 쓰고 TableView의 에이전트를 가리키면 에이전트가 실현됩니다.
tableView.delegate = _interface;
tableView.dataSource = _interface;

물론 이것은 우리의 모든 목표가 아니다. 지금 이렇게 되면 테이블뷰에서 대응하는 에이전트 구현 파일을 만들어야 한다. (갑자기 많은 파일이 많아졌다. 물론 이것도 장점이 있다. 모든 독립은 관련이 없고 틀린 것이 모두 문제가 되지 않는다는 것이다) 우리는 TableViewInterface를 일반적인 에이전트 종류로 삼아야 한다. 이렇게 하면 하나의 파일이다. 다음은 바로 코드이고 쓴 쓰레기이다.보시면 됩니다.
#import 
#import 

typedef void(^DidSelectEvent)(NSIndexPath *indexPath);

@interface TableViewInterface : NSObject

-(instancetype)initWithCellName:(NSString *)cellName DataSource:(NSArray *)dataSource ClickEvent:(DidSelectEvent)event;
@end
#import "TableViewInterface.h"

@interface TableViewInterface ()
@property (nonatomic, strong) NSArray * dataSource;
@property (nonatomic, copy) DidSelectEvent block;
@property (nonatomic, copy) NSString * cellName;
@end

@implementation TableViewInterface

-(instancetype)initWithCellName:(NSString *)cellName DataSource:(NSArray *)dataSource ClickEvent:(DidSelectEvent)event{
    self = [super init];
    if (self) {
        _dataSource = dataSource;
        _cellName = cellName;
        _block = event;
    }
    return self;
}

#pragma mark - UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return _dataSource.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
    NSString * cellIndefer = _cellName;
    Class CellClass = NSClassFromString(_cellName);
    id cell = [tableView dequeueReusableCellWithIdentifier:cellIndefer];
    if (nil == cell) {
        if ([[CellClass alloc] respondsToSelector:@selector(initWithStyle:reuseIdentifier:)]) {
            SEL selector = NSSelectorFromString(@"initWithDic:");
            cell = [[CellClass alloc] performSelector:selector withObject:cellIndefer];
        }
        SEL setModel = NSSelectorFromString(@"setModel:");
        [cell performSelector:setModel withObject:_dataSource[indexPath.row]];
    }
    return cell;
#pragma clang diagnostic pop
}

#pragma mark - UITableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 45;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPat{
    if (_block) {
        _block(indexPat);
    }
    return;
}

이 안에는perform Selector: with Object: 호출 방법이 있습니다. 이 방법의 Object는 하나의 매개 변수만 전달할 수 있습니다. 우리가Cell을 만드는 방법은 두 개의 매개 변수가 있습니다. 우리는 곡선으로 나라를 구할 수 밖에 없습니다.BaseCell 을 생성합니다.안에 매개 변수가 있는 방법을 쓰고 이 방법에서 두 개의 매개 변수가 있는 방법을 사용하면 아래의 문제를 해결할 수 있다. 여기에 데이터를 설정하는 방법도 있다.앞으로의cell은 모두 이 클래스를 계승하고 설정 데이터를 다시 쓰는 방법을 쓰면 됩니다.
#import 

@interface BaseTableViewCell : UITableViewCell
-(instancetype)initWithDic:(NSString *)identifier;
-(void)setModel:(NSDictionary *)model;
@end
#import "BaseTableViewCell.h"

@implementation BaseTableViewCell

-(instancetype)initWithDic:(NSString *)identifier{
    self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
    if (self) {
        self.backgroundColor = [UIColor clearColor];
    }
    return self;
};

-(void)setModel:(NSDictionary *)model{
    self.textLabel.text = model[@"title"];
}

@end

응, 다시 한 번 보고 사용해.
UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];
 _interface = [[TableViewInterface alloc]initWithCellName:@"BaseTableViewCell" DataSource:@[@{@"title":@"1"},@{@"title":@"2"},@{@"title":@"3"},@{@"title":@"4"}] ClickEvent:^(NSIndexPath *indexPath){
        NSLog(@"  %li", (long)indexPath.row);
    }];
tableView.delegate = _interface;
tableView.dataSource = _interface;
[self.view addSubview:tableView];

좋은 웹페이지 즐겨찾기