1.推薦關(guān)注頁面,推薦類別列表
左邊的tableView用Xib創(chuàng)建,給定寬度約束.列表中的數(shù)據(jù)由網(wǎng)絡請求所得.
/**
請求左邊的類別數(shù)據(jù)
*/
- (void)loadCategories {
// 請求參數(shù)
NSMutableDictionary *params = [NSMutableDictionary dictionary];
params[@"a"] = @"category";
params[@"c"] = @"subscribe";
// 發(fā)送請求
__weak typeof(self) weakSelf = self;
[self.manager GET:@"http://api.budejie.com/api/api_open.php" parameters:params progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
// 字典數(shù)組 -> 模型數(shù)組
weakSelf.categories = [LXXRecommendCatory mj_objectArrayWithKeyValuesArray:responseObject[@"list"]];
[weakSelf.categoryTableView reloadData];
[SVProgressHUD dismiss];
//默認選中第零行
[self.categoryTableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionTop];
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
[SVProgressHUD dismiss];
}];
}
實現(xiàn)相應的數(shù)據(jù)源方法:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.categories.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//取出cell
LXXRecommendCategoryCell *cell = [self.categoryTableView dequeueReusableCellWithIdentifier:LXXCategoryId];
//設置模型
cell.category = self.categories[indexPath.row];
return cell;
}
tableView的cell使用xib創(chuàng)建.
cell中的白色分隔線是將tableView自帶的分隔線去掉,然后在xib中添加一個白色的view,再在cell的layoutSubView方法中重新布局子控件,使新添加的view顯示出來.
- (void)layoutSubviews {
[super layoutSubviews];
//重新調(diào)整內(nèi)部textLabel的frame,從而使添加的分隔線顯示出來
self.textLabel.y = 2;
self.textLabel.height -= 2 * self.textLabel.y;
}
cell左邊的紅色指示器也是在xib中創(chuàng)建,然后再cell的setSelected方法中控制指示器的顯示和cell中的textLabel文字顏色.
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
//指示器的顯示
self.selectedIndicatorView.hidden = !selected;
//textLabel文字的顏色
self.textLabel.textColor = selected ? LXXColor(219, 21, 26) : LXXColor(78, 78, 78);
}
2.關(guān)注用戶列表
用戶列表的tableView同樣在xib中設置,在相關(guān)的數(shù)據(jù)源方法中分別根據(jù)不同的列表設置相應的數(shù)據(jù).
/**
設置tableView相關(guān)
*/
- (void)setUpTableView {
//注冊cell
[self.categoryTableView registerNib:[UINib nibWithNibName:NSStringFromClass([LXXRecommendCategoryCell class]) bundle:nil]forCellReuseIdentifier:LXXCategoryId];
[self.userTableView registerNib:[UINib nibWithNibName:NSStringFromClass([LXXRecommendUserCell class]) bundle:nil]forCellReuseIdentifier:LXXUserId];
self.userTableView.rowHeight = 70;
//取消系統(tǒng)自帶的調(diào)整,手動設置兩個tableView的內(nèi)邊距
self.automaticallyAdjustsScrollViewInsets = NO;
self.categoryTableView.contentInset = UIEdgeInsetsMake(64, 0, 0, 0);
self.userTableView.contentInset = self.categoryTableView.contentInset;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
//關(guān)注類別列表
if (tableView == self.categoryTableView) {
return self.categories.count;
}else {
return self.users.count;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
//關(guān)注類別列表
if (tableView == self.categoryTableView) {
//取出cell
LXXRecommendCategoryCell *cell = [self.categoryTableView dequeueReusableCellWithIdentifier:LXXCategoryId];
//設置模型
cell.category = self.categories[indexPath.row];
return cell;
}else {
//取出cell
LXXRecommendUserCell *cell = [self.userTableView dequeueReusableCellWithIdentifier:LXXUserId];
//設置模型
cell.user = self.users[indexPath.row];
return cell;
}
}
3.存在問題
1)每次點擊左邊cell都會發(fā)送請求,即重復請求問題
2)目前只能顯示第一頁
3)網(wǎng)速慢的情況下的一系列問題