I just wanted to ask a question about iPhone development using Apple's XCode. I am new to this but have a background in web development.
What I want is to create a grid kind of like a checkers board about 10 x 10 squares. And then when a user clicks on of those squares i will need to identify it with when they then click the submit turn button.
What would be the best way to go about creating a grid?
I had looked at the table control but it appears that doesn't support rows with multiple columns, tho I could be wrong, let me know if I am.
I also have considered using a UIWebView
and just drawing out a table with HTML, but I'm not sure how I could track clicks on the grid.
I'm just after some advice to help me get going down the right route.