반응형
📄 [iOS] UITableView DataSourceResizing UITableView to fit content Swift Source Code
var frame: CGRect = self.movieUserCommentTableView.frame
frame.size.height = self.movieUserCommentTableView.contentSize.height
self.movieUserCommentTableView.frame = frame
📄 [iOS] UITableView DataSourceResizing UITableView to fit content Objective-C Source Code
dispatch_async(dispatch_get_main_queue(), ^{
//This code will run in the main thread:
CGRect frame = self.tableView.frame;
frame.size.height = self.tableView.contentSize.height;
self.tableView.frame = frame;
});
🚀 REFERENCE
반응형
'# 애플 [Apple] > iOS' 카테고리의 다른 글
[iOS] 화면 터치를 통한 Keyboard 내리기 (Close iOS Keyboard by touching anywhere using Swift) (0) | 2019.06.28 |
---|---|
[iOS] 기상청 (Korea Meteorological Administration) Grid XY (0) | 2019.06.27 |
[iOS] 진동 및 시스템 효과음 (Vibration and System Sound) (0) | 2019.06.27 |
[iOS] JSONEncoder / JSONDecoder (0) | 2019.05.01 |
[iOS] UITableView (0) | 2019.04.29 |
댓글