ios - TableView does not load all the records in simulator of iPhone -
i created following table view:
https://www.dropbox.com/s/o7w9zlyxwa6mul7/testtable.zip?dl=0
however not load rows of data on table.
can please advise me how load data in this.
according questions suppose 1 of these might actual question -
if want tableview display cells, set height cells smaller values using uitabeleviewdelegate method
func tableview(tableview: uitableview, heightforrowatindexpath indexpath: nsindexpath) -> cgfloat
. default, cell height 44. @ max 11 rows visible (only till m).if saying when uitableview calls
tableview(tableview: uitableview, cellforrowatindexpath indexpath: nsindexpath) -> uitableviewcell
till m, answer is default functionality of ios. ios handles visible cell data whenever needed. data loaded dynamically while scrolling making use of previous cells.
Comments
Post a Comment