前提・実現したいこと
カウントアップの間隔(timeinterval)をUIPickerviewで選択してスタートをすると、設定された間隔でカウントアップがしたい
発生している問題・エラーメッセーじ
list1から秒数を選択してスタートすると、timeintervalが〜秒になるよというコードがわからない
該当のソースコード
ソースコード class TimerViewController: UIViewController,UIPickerViewDelegate, UIPickerViewDataSource { @IBOutlet weak var timeCountLabel: UILabel! @IBOutlet weak var PickerView: UIPickerView! var timer: Timer? var count: Int = 0 //カウントアップの間隔 let list1:[Double] = [0.5,1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5,6.0,7.5,8.0,8.5,9.0,9.5,10.0] //カウントの上限 let list2:[Int] = [2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30] override func viewDidLoad() { super.viewDidLoad() PickerView.delegate = self PickerView.dataSource = self PickerView.selectRow(0, inComponent: 0, animated: false) PickerView.selectRow(1, inComponent: 1, animated: false) // 表示を初期化 clear() } // ドラムロールの列数 func numberOfComponents(in pickerView: UIPickerView) -> Int { return 2 } // ドラムロールの行数 func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { switch component { case 0: return list1.count case 1: return list2.count default: return 0 } } // ドラムロールの各タイトル func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? { switch component { case 0: return String(format: "%.1f秒", list1[row]) case 1: return String(format: "%.1f秒", list2[row]) default: return "error" } } @IBAction func start() { // 起動中のタイマーを無効化 timer?.invalidate() timer = Timer.scheduledTimer(withTimeInterval: 0.5, repeats: true) { (timer) in self.count = self.count + 1 DispatchQueue.main.async { self.timeCountLabel.text = String(self.count) } if self.count == Int(self.list2[3]) { timer.invalidate() } } } @IBAction func stop() { // 起動中のタイマーを無効化(ただし、count変数の中身とラベルの表示はそのまま) timer?.invalidate() } @IBAction func clear() { // 起動中のタイマーを無効化し、count変数とラベルの表示を初期化 timer?.invalidate() count = 0 self.timeCountLabel.text = String(self.count) } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/19 06:15
2019/12/19 06:28
2019/12/19 06:51