I have an array which store highscore records,开发者_开发问答 besides using tableview, is there another way i can display my array.
That's the best way, if you're using an NSArray
as a datasource; if you don't need the users to interact with the data, you could use a UIScrollView
, maybe, by adding a UILabel
for every data row, though this seems clunky.
Your other option, and probably the best option, is to customize the look of the tableview, as shown in this tutorial.
精彩评论