2 回答

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超1個(gè)贊
UITableView其它一些東西在這里不多講,這里的就是講解UITableView的創(chuàng)建。
UITableView的創(chuàng)建有三種方法分別是純代碼、XIB、storyboard。下面就是創(chuàng)建的代碼
1.純代碼的創(chuàng)建
首先實(shí)例化UITableView(我所有的創(chuàng)建都是在UIViewController類中完成的)
lettableView =UITableView(frame:UIScreen.mainScreen().bounds, style:UITableViewStyle.Plain)
tableView.delegate=self
tableView.dataSource=self
self.view.addSubview(tableView)
必要的幾個(gè)代理方法
func numberOfSectionsInTableView(tableView:UITableView) ->Int{
return1
}
func tableView(tableView:UITableView, numberOfRowsInSection section:Int) ->Int{
return3
}
這一塊是自定義cell
func tableView(tableView:UITableView, cellForRowAtIndexPath indexPath:NSIndexPath) ->UITableViewCell{
letcell=TYCodeTableViewCell.codeTableViewCell(tableView)as!TYCodeTableViewCell
returncell
}
下面是具體用純代碼創(chuàng)建cell
class

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超13個(gè)贊
UITableView其它一些東西在這里不多講,這里的就是講解UITableView的創(chuàng)建。 UITableView的創(chuàng)建有三種方法分別是純代碼、XIB、storyboard。下面就是創(chuàng)建的代碼 1.純代碼的創(chuàng)建 首先實(shí)例化UITableView(我所有的創(chuàng)建都是在UIViewController類中完成.
- 2 回答
- 0 關(guān)注
- 1385 瀏覽
添加回答
舉報(bào)