iOS8新特性,ios8以後,你在也不需要根據cell上內容的不一樣計算每個cell的高度了,因為系統可以自己加載它的高度。下面是具體的實現代碼:
@interface ViewController ()
// 數據源
@property (nonatomic, strong) NSMutableArray *dataArray;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// 設置一個默認的值
_tableView.rowHeight = UITableViewAutomaticDimension;
// 這個高度可以隨便設置,可以是 44 或者其他數
_tableView.estimatedRowHeight = 4;
_dataArray =[NSMutableArray arrayWithCapacity:0] ;
[_dataArray addObjectsFromArray:@[@1用得是很爽了,但畢竟網絡數據是從他人服務器經過,難免會讓人產生不放心
的情緒。確實,使用這種免費VPN,誰也無法保證數據的隱私安全。所以,在使用這些翻牆服務時,建議不要進行個人隱私
操作,比如網銀支付寶等,@2,@了一個激動人心的特性,UITableView 的 Self Sizing Cells。對於開發者來,@2,@1,@2用得是很爽了,但畢竟網絡數據是從他人服務器經過,難免會讓人產生不放心的情緒。確實,使用這種免費VPN,誰也無法保證數據的隱私安全。所以,在使用這些翻牆服務時,建議不要進行個人隱私操作,比如網銀支付寶等,@了一個激動人心的特性,UITableView 的 Self Sizing Cells。對於開發者來,@了一個激動人心的特性,UITableView 的 Self Sizing Cells。對於開發者來,@在iOS8中,蘋果給出了一個激動人心的特性,UITableView 的 Self Sizing Cells。對於開發者來說,這是一個很值得一試的特性,在iOS8以前,如果需要在UITableViewCell中展示動態的內容,必須每次計算內容所占高度,然後賦值給UITableView的height。在iOS8中,蘋果給出了一個激動人心的特性,UITableView 的 Self Sizing Cells。對於開發者來說,這是一個很值得一試的特性,在iOS8以前,如果需要在UITableViewCell中展示動態的內容,必須每次計算內容所占高度,然後賦值給UITableView的height。]];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _dataArray.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @ID;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
}
cell.textLabel.text = _dataArray[indexPath.row];
cell.textLabel.numberOfLines = 0;
return cell;
}
運行結果:高度系統自動幫算好了