标签:
8
// // ViewController.swift // Times Tables // // Created by ZC on 16/1/9. // Copyright © 2016年 ZC. All rights reserved. // import UIKit class ViewController: UIViewController, UITableViewDelegate { @IBOutlet weak var sliderValue: UISlider! @IBOutlet weak var result: UITableView! @IBAction func sliderMoved(sender: AnyObject) { result.reloadData() } func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 20 } func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cells") let timesTable = Int(sliderValue.value * 20) cell.textLabel?.text = String(timesTable * (indexPath.row + 1)) return cell } override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
标签:
原文地址:http://www.cnblogs.com/zcdll/p/5161052.html