标签:
1 override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 2 let cell = tableView.dequeueReusableCellWithIdentifier(“iCocos”, forIndexPath: indexPath) as! UITableViewCell 3 4 cell.textLabel?.text = "iCocos----------ios" 5 6 return cell 7 }
1 override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 2 let cell = tableView.dequeueReusableCellWithIdentifier(ID, forIndexPath: indexPath) as! iCocosTableViewCell 3 4 cell.textLabel?.text = "iCocos----------ios" 5 6 return cell 7 }
1 override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 2 let cell = tableView.dequeueReusableCellWithIdentifier(ID, forIndexPath: indexPath) as! iCocosTableViewCell 3 4 cell.textLabel?.text = "iCocos----------ios" 5 6 return cell 7 }
iOS开发——UI高级Swift篇&swift简单总结tableView
标签:
原文地址:http://www.cnblogs.com/iCocos/p/4814403.html