美文网首页
学习笔记:swift——tableview基本使用方法

学习笔记:swift——tableview基本使用方法

作者: 独居焚香 | 来源:发表于2015-12-08 13:53 被阅读684次
    var listData = [(title: "1111",contents: "111111"),(title: "2222",contents: "2222222"),(title: "3333",contents: "333333")]
    
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
           let cell:UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier:"cell")
           let heating = listData[indexPath.row]
           cell.textLabel?.text = heating.title
           cell.detailTextLabel?.text = heating.contents       
           cell.selectionStyle = UITableViewCellSelectionStyle.None//无法选择
    
            return cell
            
            }
    
    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
            return 1
        }
    
     override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return listData.count
            
        }
    

    相关文章

      网友评论

          本文标题:学习笔记:swift——tableview基本使用方法

          本文链接:https://www.haomeiwen.com/subject/qmuehttx.html