swift純程式碼 demo

來源:互聯網
上載者:User

標籤:

class serviceHallViewController: UIViewController  ,UITableViewDelegate ,UITableViewDataSource {        var tableView :UITableView?        override func viewDidLoad() {    super.viewDidLoad()    //self.title = "MySwift"    setupViews()        // Do any additional setup after loading the view.    }    func setupViews()    {        //初始化tableview並設定frame        self.tableView = UITableView(frame:self.view!.frame)        //設定tableview的代理對象        self.tableView!.delegate = self        self.tableView!.dataSource = self        self.tableView!.registerClass(UITableViewCell.self, forCellReuseIdentifier:"cell")        //將tableview添加到view試圖上        self.view?.addSubview(self.tableView!)    }        func tableView(tableView:UITableView, numberOfRowsInSection section:Int) -> Int    {        return 20;    }        // Row display. Implementers should *always* try to reuse cells by setting each cell‘s reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:    // Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)        func tableView(tableView:UITableView, cellForRowAtIndexPath indexPath:NSIndexPath) -> UITableViewCell    {        let cell = tableView .dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)as! UITableViewCell        cell.textLabel!.text = String(format:"%i", indexPath.row+1)        return cell    }

swift純程式碼 demo

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.