tableView 프록시를 Controller에서 꺼내기
저희가 평소에 대리를 어떻게 썼는지 한번 생각해볼게요.
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];
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.