본문 바로가기
옛날

xcode table cell dynamic height(테이블뷰 동적높이)

by 차가운게 조아 2016. 9. 20.







viewDidLoad


self.table.estimatedRowHeight = 44.0 ;

self.table.rowHeight = UITableViewAutomaticDimension;



-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

return UITableViewAutomaticDimension;

}






'옛날' 카테고리의 다른 글

클래시로얄 특가상품 보상 짱짱맨, 그리고 메가 미니언  (0) 2016.09.22
iOS 개발 자료  (0) 2016.09.21
테이블뷰 다음페이지 불러오기  (0) 2016.09.05
tableview row insert  (0) 2016.09.05
[ios] 자주 쓰는 패턴  (0) 2016.09.05