ios - UITableView show all rows and no scroll -
i have uitableview dynamic cells. disable scroll , show rows. aim have have scroll view contains tableview , additional views, want parent scroll view content size of child elements, including uitableview.
this have tried far;
self.tableview.scrollenabled = false var frame = self.tableview.frame frame.size.height = self.tableview.contentsize.height self.tableview.frame = frame
with this, can disable scroll not rows displayed.
i cannot seem find way force uitableview display of cells, possible? there alternative way should approaching design?
Comments
Post a Comment