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
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.