How can i create an UITableView on Xcode 4.2,for IOS 5?

前端 未结 2 2089
-上瘾入骨i
-上瘾入骨i 2021-01-19 14:03

Last week i have downloaded Xcode 4.2, so when i started building apps i\'ve tried to add an UITableView to one of my projects (as normal as i have been doing s

2条回答
  •  难免孤独
    2021-01-19 14:30

    You should start with the project template "Master-Detail Application" and look at the mechanisms to create your own code in C++.

    But at the core, creating a UITableView is a two step:

    • init the view
    • plug it to its delegate/datasource

    also, this might help you: Can i write Cocoa Touch[iPhone] applications in C++ language

提交回复
热议问题