IOS - --- Controller 다이어트 1: UITableView 를 벗 기 고 dataSource 와 deleagte 를 패키지 합 니 다.
디 결합 을 토론 하기 전에 우 리 는 MVC 의 핵심 을 알 아야 한다. 컨트롤 러 (이하 C 로 약칭) 는 모델 (이하 M 으로 약칭) 과 보기 (이하 V 로 약칭) 의 상호작용 을 책임 진다.
여기 서 말 하 는 M 은 보통 하나의 단독 유형 이 아니 라 여러 가지 유형 으로 구 성 된 한 층 이다.최상층
Model
엔 딩 클래스 는 C 에 의 해 직접 소유 된다.Model
류 는 두 개의 대상 을 보유 할 수 있다.흔히 볼 수 있 는 오류:
원시 판
C 에서 만 듭 니 다.
UITableView
대상 을 대상 으로 데이터 원본 과 대 리 를 자신 으로 설정 합 니 다.UI 논리 와 데이터 접근 을 스스로 관리 하 는 논리 다.이런 구조 에서 주로 이런 문제 가 존재 한다.UITableView
스스로 완성 했다.이 문제 들 을 해결 하기 위해 서 우 리 는 먼저 데이터 소스 와 대리 가 각각 그런 일 을 했다 는 것 을 알 게 되 었 다.
데이터 원본
그것 은 반드시 실현 해 야 할 두 가지 대리 방법 이 있다.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
쉽게 말 하면 이 두 가지 방법 을 실현 하기 만 하면 하 나 는 간단 하 다.
UITableView
대상 은 완 성 된 셈 이다.이외에 도 그것 은 관 리 를 책임 진다. 수량
section
의 편집 과 이동 등.대리
대 리 는 주로 다음 과 같은 몇 가지 내용 과 관련된다.
가장 많이 사용 하 는 것 도 두 가지 방법 이다.
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
알림: 절대 다수의 에이전트 방법 은 모두 하나 가 있 습 니 다.
cell
매개 변수그래서 저희 의 목적 이 나 왔 습 니 다.
1. 결합 해제
2, c 전문 다이어트
방법: 데이터 원본 과 프 록 시 를 모두 재 활용 할 수 있 는 패키지
1. dataSource 의 패키지
. h 파일 중
#import
#import
NS_ASSUME_NONNULL_BEGIN
typedef void (^TableViewCellConfigureBlock)(id cell, id items, NSIndexPath * indexPath);
@interface GMTableViewProtocol : NSObject
- (id)initWithItems:(NSArray *)anItems
cellIdentifier:(NSString *)aCellIdentifier
configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock;
- (id)itemAtIndexPath:(NSIndexPath *)indexPath;
@end
. m 파일 중
#import "GMTableViewProtocol.h"
@interface GMTableViewProtocol ()
@property(nonatomic, strong) NSArray* items;/**< array */
@property(nonatomic, copy) NSString* cellIdentifier;/**< cellIdentifier */
@property(nonatomic, copy) TableViewCellConfigureBlock configureCellBlock;/**< block */
@end
@implementation GMTableViewProtocol
- (instancetype)init {
return nil;
}
- (id)initWithItems:(NSArray *)anItems cellIdentifier:(NSString *)aCellIdentifier configureCellBlock:(TableViewCellConfigureBlock)aConfigureCellBlock {
self = [super init];
if (self) {
self.items = anItems;
self.cellIdentifier = aCellIdentifier;
self.configureCellBlock = aConfigureCellBlock;
}
return self;
}
- (id)itemAtIndexPath:(NSIndexPath *)indexPath {
if ([self isDoubleDimensionalArray]) {
NSArray *sectionArr = self.items[indexPath.section];
return sectionArr.count > indexPath.row ? sectionArr[(NSUInteger) indexPath.row] : 0;
}else{
return self.items.count > indexPath.section ? self.items[(NSUInteger) indexPath.section] : 0;
}
}
#pragma mark - UITableViewDataSource
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return self.items.count > 0 ? self.items.count : 0;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if ([self isDoubleDimensionalArray]) {
NSArray *sectionArr = self.items[section];
return sectionArr.count;
}else{
return 1;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
id item = [self itemAtIndexPath:indexPath];
self.configureCellBlock(cell, item, indexPath);
return cell;
}
///
- (BOOL)isDoubleDimensionalArray
{
if (self.items.count == 0) return NO;
if ([self.items.firstObject isKindOfClass:[NSArray class]]) {
return YES;
}else{
return NO;
}
}
@end
2. delegate 의 패키지
. h 파일 중
#import
NS_ASSUME_NONNULL_BEGIN
typedef void(^GMTableViewDidSelectBlock)(UITableView *GMTableView, NSIndexPath *GMIndexPath);
@interface GMTableViewDelegate : NSObject
- (id)initWithHeaderV_section:(UIView *_Nullable)headerV footerV_section:(UIView *_Nullable)footerV rowHeight:(CGFloat)rowH headerH_section:(CGFloat)headerH footerH_section:(CGFloat)footerH didSelectBlock:(GMTableViewDidSelectBlock)didSelectBlock;
@end
. m 파일 중
#import "GMTableViewDelegate.h"
@interface GMTableViewDelegate ()
@property (nonatomic, strong)UIView *headerV_section;
@property (nonatomic, strong)UIView *footerV_section;
@property (nonatomic, assign)CGFloat rowHeight;
@property (nonatomic, assign)CGFloat headerH_section;
@property (nonatomic, assign)CGFloat footerH_section;
@property (nonatomic, copy)GMTableViewDidSelectBlock didSelectBlock;
@end
@implementation GMTableViewDelegate
- (instancetype)init
{
return nil;
}
- (id)initWithHeaderV_section:(UIView *)headerV footerV_section:(UIView *)footerV rowHeight:(CGFloat)rowH headerH_section:(CGFloat)headerH footerH_section:(CGFloat)footerH didSelectBlock:(GMTableViewDidSelectBlock)didSelectBlock
{
self = [super init];
if (self) {
self.headerH_section = headerH;
self.headerV_section = headerV;
self.footerH_section = footerH;
self.footerV_section = footerV;
self.rowHeight = rowH;
self.didSelectBlock = didSelectBlock;
}
return self;
}
#pragma mark -
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return self.rowHeight;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return self.headerH_section;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return self.footerH_section;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
UIView *headerV = [[UIView alloc]init];
if (self.headerV_section) {
self.headerV_section.frame = CGRectMake(0, 0, self.headerV_section.width, self.headerV_section.height);
headerV.size = CGSizeMake(self.headerV_section.width, self.headerV_section.height);
headerV.backgroundColor = [UIColor whiteColor];
[headerV addSubview:self.headerV_section];
}
return headerV;
}
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
UIView *footerV = [[UIView alloc]init];
if (self.footerV_section) {
footerV = [self XC_copyAView:self.footerV_section];
}
return footerV;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
self.didSelectBlock(tableView, indexPath);
}
/// UIView
- (UIView *)XC_copyAView:(UIView *)view
{
NSData *tempArchive = [NSKeyedArchiver archivedDataWithRootObject:view];
return [NSKeyedUnarchiver unarchiveObjectWithData:tempArchive];
}
@end
사용 방법:
//
TableViewCellConfigureBlock configureBlock = ^(GMActivityCenterTableViewCell *cell, NSString *img) {
[cell setCellImg:img];
};
self.dataSource = [[GMTableViewProtocol alloc]initWithItems:@[@"activityCenter_luckyDraw",@"activityCenter_popuparize",@"activityCenter_stockGod"] cellIdentifier:cellID configureCellBlock:configureBlock];
self.activityTableV.dataSource = self.dataSource;
//
GMTableViewDidSelectBlock didSelectBlock = ^(UITableView *GMTableView, NSIndexPath *GMIndexPath){
[SVProgressHUD showInfoWithStatus:[NSString stringWithFormat:@"click %ld",(long)GMIndexPath.section]];
};
UIView *footerV = [[UIView alloc]init];
footerV.backgroundColor = [UIColor whiteColor];
footerV.size = CGSizeMake(SCREEN_WIDTH, 16*kScreenProportionY);
CGFloat rowH = (SCREEN_WIDTH - 32)/343*100;
self.delegate = [[GMTableViewDelegate alloc]initWithHeaderV_section:nil footerV_section:footerV rowHeight:rowH headerH_section:CGFLOAT_MIN footerH_section:16*kScreenProportionY didSelectBlock:didSelectBlock];
self.activityTableV.delegate = self.delegate;
완료, 이렇게 하면 controller 의 코드 양 을 어느 정도 줄 일 수 있 습 니 다. UICollection View 도 마찬가지 로 과거 와 비교 하면 OK 입 니 다.
중점: 이것 은 본인 이 자신의 실제 프로젝트 수요 와 개인 코드 스타일 에 따라 쓴 것 입 니 다. 여러분 은 개인의 수요 와 스타일 에 따라 적당 하 게 수정 하면 됩 니 다. 만약 에 더 좋 은 c 다이어트 방안 이 있 으 면 아낌없이 가르쳐 주 십시오.마지막 으로 여러분 이 하트 를 눌 러 주 셨 으 면 좋 겠 습 니 다. 감사합니다.