Reputation: 1408
I want to create an app that will have my own tableView
of the top (public) high scores. Basically a leaderboard. I don't want to have the typical look:
I want to customize it. Is there a way I can create it myself? If not, is there a library that is already made?
Update
Basically I want to create my own leaderboard from scratch, if that's possible. How can I get data from the web every time a new high score gets uploaded? (It will be constantly updating!)
Upvotes: 0
Views: 498
Reputation: 5060
I guess you want to customize the tableView. There are ways by which you can create custom table view with custom rows. You need to create custom cells either by code or by Xibs or in Storyboards, as per you design. Below links will guide you Customize tableView
Let me know if this answers your question.
Upvotes: 0