8_Times_Tables

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8_Times_Tables相关的知识,希望对你有一定的参考价值。

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.
    }
}

项目:8_Times Tables

以上是关于8_Times_Tables的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段8——声明函数

VScode用户片段

Xcode 8 Autocomplete Broken - 仅显示有限的用户代码片段 - 知道为啥吗?

这些 C++ 代码片段有啥作用?

ES7-Es8 js代码片段

[AndroidStudio]_[初级]_[配置自动完成的代码片段]