implementing a cyclic UITableView

后端 未结 5 432
别跟我提以往
别跟我提以往 2020-12-31 23:10

What is the best way to implement a cyclic UITableView where instead of showing white space when the user scrolls up to the table\'s bounds, it simply wraps round cyclically

5条回答
  •  别那么骄傲
    2020-12-31 23:49

    You cant make cyclic table . suppose you return a large number of rows from numberOfRowsInSection method(finite number) then also table having a upper end and of cource you cant return infinite for number of rows thats why it having down end. so it cant look like round table.

    you can do it for a finite number also you can repeat rows but this is not possible to make cyclic tableView.

提交回复
热议问题