前提・実現したいこと
スタートボタンを押すとPickerviewが消えてカウントダウンのlabel(00.59)が出現するようにしたいのですがどのようなコードを書けばいいのでしょうか?iphoneのタイマーのような感じにしたいです。
該当のソースコード
import UIKit
class IntervalViewController: UIViewController,UIPickerViewDelegate,UIPickerViewDataSource {
func numberOfComponents(in pickerView: UIPickerView) -> Int {
return dataList.count}
@IBOutlet weak var testPickerView: UIPickerView! @IBOutlet weak var testLabel: UILabel! var timer:Timer = Timer() var count:Int = 0 //時分秒のデータ let dataList = [[Int](0...60), [Int](0...60)] //最初からあるメソッド override func viewDidLoad() { super.viewDidLoad() self.testPickerView.delegate = self self.testPickerView.dataSource = self print(dataList) //「分」のラベルを追加 let mStr = UILabel() mStr.text = "分" mStr.sizeToFit() mStr.frame = CGRect(x: testPickerView.bounds.width/2 - mStr.bounds.width/2, y: testPickerView.bounds.height/2 - (mStr.bounds.height/2), width: mStr.bounds.width, height: mStr.bounds.height) testPickerView.addSubview(mStr) //「秒」のラベルを追加 let sStr = UILabel() sStr.text = "秒" sStr.sizeToFit() sStr.frame = CGRect(x: testPickerView.bounds.width*3/4 - sStr.bounds.width/2, y: testPickerView.bounds.height/2 - (sStr.bounds.height/2), width: sStr.bounds.width, height: sStr.bounds.height) testPickerView.addSubview(sStr) } //コンポーネントの個数を返すメソッド func numberOfComponentsInPickerView(pickerView: UIPickerView) -> Int { return dataList.count} //コンポーネントに含まれるデータの個数を返すメソッド func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { return dataList[component].count} //サイズを返すメソッド func pickerView(_ pickerView: UIPickerView, widthForComponent component:Int) -> CGFloat { return testPickerView.bounds.width * 1/4} //データを返すメソッド func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView { let pickerLabel = UILabel() pickerLabel.textAlignment = NSTextAlignment.left pickerLabel.text = String(dataList[component][row]) pickerLabel.backgroundColor = UIColor.red return pickerLabel } //ボタン押下時の呼び出しメソッド @IBAction func startCountDown(sender: UIButton) { //すでに動いているタイマーは停止する timer.invalidate() //カウントダウンする秒数を取得する。 count = dataList[0][testPickerView.selectedRow(inComponent: 1)] * 60 + dataList[0][testPickerView.selectedRow(inComponent: 2)] //1秒周期でcountDownメソッドを呼び出すタイマーを開始する。 timer = Timer.scheduledTimer(timeInterval: 1, target:self, selector: #selector(countDown), userInfo:nil, repeats:true) } //タイマーから呼び出されるメソッド @objc func countDown(){ //カウントを減らす。 //count = 1 //カウントダウン状況をラベルに表示 if(count > 0) { count -= 1 testLabel.text = "残り(count)秒です。" } else { testLabel.text = "カウントダウン終了" timer.invalidate() } } @IBAction func startCountDown(_ sender: UIButton) { } @IBAction func stop() { // 起動中のタイマーを無効化(ただし、count変数の中身とラベルの表示はそのまま) timer.invalidate() } @IBAction func clear() { // 起動中のタイマーを無効化し、count変数とラベルの表示を初期化 timer.invalidate() count = Int(0) self.testLabel.text = String(format: "%.2f", self.count) }
}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。