TabelViewCell高度自適應
今天早上在CocoaChina上看到一個tableViewCell高度自適應的demo,用到了SDAutoLayout這個第三方庫,覺得挺方便的.所以想給大家分享一下,上程式碼.
我只建立2個控制元件,一個UIImageView和一個UIlabel.
Model.h
#import <Foundation/Foundation.h>
@interface Model : NSObject
@property(nonatomic, copy)NSString *coverimg;//圖片請求的url
@property(nonatomic, copy)NSString *content;//使用者發表的內容
@property(nonatomic, copy)NSString *coverimg_wh;//真實圖片的尺寸,如"640*857"
@end
自定義的tableViewCell
//TableView.h
#import <UIKit/UIKit.h>
#import "Model.h"
@interface TableViewCell : UITableViewCell
@property(nonatomic, strong)Model *model;
@end
//TableView.m
#import "TableViewCell.h"
#import "UIView+SDAutoLayout.h"
#import "UITableView+SDAutoTableViewCellHeight.h"
#import "UIImageView+WebCache.h"
@implementation TableViewCell
{
UIImageView *_imageView;//圖片
UILabel *_label;//文字
}
-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
[self createView];
}
return self;
}
-(void)createView
{
//初始化並新增這兩個控制元件
UIImageView *view0 = [UIImageView new];
view0.backgroundColor = [UIColor whiteColor];
_imageView = view0;
UILabel *view1 = [UILabel new];
view1.textColor = [UIColor lightGrayColor];
view1.font = [UIFont systemFontOfSize:16];
_label = view1;
[self.contentView addSubview:view0];
[self.contentView addSubview:view1];
//這裡自動佈局需要用到參照方位的概念
_imageView.sd_layout
.leftSpaceToView(self.contentView, 10)//表示_imageView左邊離contentView的距離是10.可以理解為_imageView的x座標與self.contentView的x座標的差值
.rightSpaceToView(self.contentView, 10)//同上,_imageView右邊離contentView最右邊的距離
.topSpaceToView(self.contentView, 10);//_imageView的最上面離contentView的距離
_label.sd_layout
.topSpaceToView(_imageView, 10)//_label上方里_imageView的距離是10
.leftEqualToView(_imageView)//_label與_imageView的左邊間距一樣,也就是x座標一樣
.rightEqualToView(_imageView)//_label與_imageView的右邊間距也一樣,也就是說_label與_imageView的Width相同
.autoHeightRatio(0);//只要設定了_label的寬度後,加上這句話就可以通過_label的文字自適應高度了
}
-(void)setModel:(Model *)model
{
CGFloat bottomMargin = 10;
_label.text = model.content;
if (![model.coverimg_wh isEqualToString:@""]) {
NSArray *array = [model.coverimg_wh componentsSeparatedByString:@"*"];//通過"*"擷取字串,獲得寬和高
//將寬和高轉換成NSInteger型別
NSInteger width = [array[0] floatValue];
NSInteger height = [array[1] floatValue];
CGFloat scale = height / width;//得到高和快的比例
_imageView.sd_layout.autoHeightRatio(scale);//_imageView的寬度已經確定了,通過這個比例得到_imageView的高度
[_imageView sd_setImageWithURL:[NSURL URLWithString:model.coverimg]];
bottomMargin = 10;
}
else
{
_imageView.sd_layout.autoHeightRatio(0);
}
//第一個引數是cell最下面的那個view,第二個引數是最下面那個View離cell底部的距離
[self setupAutoHeightWithBottomView:_label bottomMargin:bottomMargin];
}
- (void)awakeFromNib {
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
其實這個第三方用起來還是挺簡單的,我的註釋應該還是比較詳細吧
XMHNetWorking
這個是我通過AFNetWorking封裝的網路請求方法
#import "XMHNetWorkingMethod.h"
#import "AFNetworking.h"
@implementation XMHNetWorkingMethod
+(void)getDataString:(NSString *)string BodyString:(NSDictionary *)bodyDic WithDataBlock:(void (^)(id))dataBlock
{
//字串轉碼
string = [string stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet characterSetWithCharactersInString:string]];
//建立管理者物件
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
//設定允許請求的類別
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/plain",@"text/json",@"application/json",@"text/javascript",@"text/html", @"application/javascript", @"text/js",@"application/x-javascript", nil];
//開始請求
if (!bodyDic) {
//如果BodyString為空就執行Get請求
[manager GET:string parameters:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nonnull responseObject) {
//請求成功執行的操作
dataBlock(responseObject);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
//請求失敗執行的操作
}];
}
else
{
//否則執行POST請求
[manager POST:string parameters:nil success:^(NSURLSessionDataTask * _Nonnull task, id _Nonnull responseObject) {
dataBlock(responseObject);
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
}];
}
}
@end
ViewController
#import "ViewController.h"
#define POSTURLSTRING @"http://api2.pianke.me/timeline/list"//網路請求的地址
#import "UIImageView+WebCache.h"//用於下載圖片並儲存到沙盒
#import "MJRefresh.h"//重新整理載入第三方
#import "XMHNetWorkingMethod.h"//自己寫的網路請求
#import "TableViewCell.h"//自定義的tableViewCell
#import "UITableView+SDAutoTableViewCellHeight.h"//自適應高度
@interface ViewController ()<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic, strong)UITableView *tableView;
@property(nonatomic, strong)NSMutableArray *listArray;
@end
static NSInteger flag = 0;
@implementation ViewController
-(void)loadView
{
[super loadView];
self.listArray = [NSMutableArray array];
[self getData];
//初始化tableview
_tableView = [[UITableView alloc]initWithFrame:self.view.frame];
_tableView.delegate = self;
_tableView.dataSource = self;
[self.view addSubview:_tableView];
//MJRefresh重新整理載入的方法
[self.tableView.header beginRefreshing];
_tableView.header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
//當下拉重新整理的時候刪除陣列,重新獲取最新資料再新增到陣列
flag = 0;
[_listArray removeAllObjects];
[self getData];
}];
_tableView.footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
//當載入的時候將flag這個引數加10,再解析資料,得到新的一組資料再放進陣列裡
flag += 10;
[self getData];
}];
}
-(void)getData
{
NSString *str = [NSString stringWithFormat:@"%ld",flag];
[XMHNetWorkingMethod getDataString:POSTURLSTRING BodyString:[NSDictionary dictionaryWithObjectsAndKeys:str,@"start",@"10",@"limit",@"2",@"client", nil] WithDataBlock:^(id data) {
//KVC賦值,_listArray裡放的全是model型別物件
NSDictionary *dataDic = [data objectForKey:@"data"];
NSArray *array = [dataDic objectForKey:@"list"];
for (NSDictionary *dic in array) {
Model *model = [[Model alloc]init];
[model setValuesForKeysWithDictionary:dic];
[_listArray addObject:model];
}
[_tableView.header endRefreshing];
[_tableView.footer endRefreshing];
[_tableView reloadData];
}];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
//第一個引數是tableviewcell,第二個引數是得到螢幕的寬度,這樣可以在橫屏的時候照樣自適應
[self.tableView startAutoCellHeightWithCellClass:[TableViewCell class] contentViewWidth:[UIScreen mainScreen].bounds.size.width];
return _listArray.count;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
/* model 為模型例項, keyPath 為 model 的屬性名,通過 kvc 統一賦值介面 */
return [self.tableView cellHeightForIndexPath:indexPath model:self.listArray[indexPath.row] keyPath:@"model"];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *ID = @"test";
TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
if (!cell) {
cell = [[TableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
}
cell.model = self.listArray[indexPath.row];
return cell;
}
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
成功之後截圖
大家可以去github上檢視SDAutoLayout來看看官方的解釋
好了,今天就到這裡,謝謝大家
相關文章
- textarea 高度自適應
- html iframe高度自適應HTML
- textarea文域高度自適應
- textarea高度自適應詳解
- 小程式Swiper高度自適應
- jQuery textarea框高度自適應jQuery
- iframe 跨域高度自適應跨域
- Widget小元件如何自適應高度元件
- iframe自適應高度的外掛
- 自動載入的iframe高度自適應
- 巢狀UITextView的UITableViewCell高度自適應巢狀UITextView
- 微信小程式Swiper高度自適應微信小程式
- textarea實現高度自適應的理解
- easyui-layout佈局高度自適應UI
- 微信輪播圖自適應高度
- iOS 精準獲取webView內容高度並自適應高度iOSWebView
- 真正解決iframe高度自適應問題
- React Native踩坑指南:WebView高度自適應React NativeWebView
- UITableViewCell含有WebView的自適應高度新解決方案UIWebView
- textarea文字框高度自適應程式碼例項
- 微信小程式swiper高度自適應,swiper的子元素高度不固定微信小程式
- 好程式設計師web前端分享高度自適應程式設計師Web前端
- CSS 圖片固定長寬比實現高度自適應CSS
- 怎麼讓body高度自適應螢幕?為什麼?
- 前端頁面高度和寬度自適應怎麼做?前端
- 67,表格中單元格td自適應高度,最大高度後滾動條顯示
- 移動端:對高度自適應的輸入框說不~
- css--常見左右盒子寬度高度自適應佈局CSS
- Iframe嵌入跨域頁面高度自適應實現詳解跨域
- Android XML靈活佈局之 EditText實現自適應高度同時限制最小和最大高度AndroidXML
- js獲取iframe和父級之間元素,方法、屬,獲取iframe的高度自適應iframe高度JS
- Flutter實現馬蜂窩小紅書自適應高度輪播圖Flutter
- 三種方法解決浮動元素父容器高度自適應問題
- iframe 裡的高度適應的問題
- 微信小程式之swiper輪播圖中的圖片自適應高度微信小程式
- 短視訊系統原始碼,上傳圖片自適應拉伸符合高度原始碼
- 直播平臺開發,scroll-view如何自適應頁面剩餘高度View
- iOS初級開發學習筆記:一個頁面中自動計算cell的高度來自適應tableView的高度iOS筆記View
- 短視訊商城系統,scroll-view如何自適應頁面剩餘高度View