swift의 tableView

1514 단어
틈을 내어 swift를 계속 연구하고자 합니다. 본고는 swift로tableView를 만드는 것을 간단하게 소개합니다. 대신은 코드를 아래와 같이 무시해 주십시오.
import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        
        //   tableView   
        let tableView = UITableView()
        tableView.frame = self.view.bounds
        self.view.addSubview(tableView)
        
        //      ,    
        tableView.dataSource = self
        tableView.delegate = self
    }

}

//        ,          ,+    
//    OC  category
extension ViewController : UITableViewDataSource
{
    // MARK:-        
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 100
    }
    
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let ID : String = "CELL"
        var cell = tableView.dequeueReusableCellWithIdentifier(ID)
        
        if cell == nil {
            cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: ID)
        }
        
        cell?.textLabel?.text = "swift:\(indexPath.row)"
        
        return cell!
    }
}

extension ViewController : UITableViewDelegate
{
    // MARK:-       
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        print(indexPath.row)
    }
}

좋은 웹페이지 즐겨찾기