前提・実現したいこと
プログラミング初心者で今回が初めての制作なので、わからないことが多くみなさんにもご迷惑おかけしてしまうと思います。
現在はエラーが2つ表示されています。それらを消したいのですが、どうすれば良いかわかりません。
エラーの内容的に定義していないということだと思うので、すればいいかと思うのですが、何をどのように定義すれば良いのかわかりません。
みなさんのお力を貸していただけないでしょうか?
発生している問題・エラーメッセージ
Use of undeclared type 'ResultViewController'
Use of undeclared type 'SetViewController'
該当のソースコード
import UIKit
class ViewController: UIViewController {
var ResultVC:ResultViewController = MapViewController() var SetVC:SetViewController = ListViewController() @IBOutlet weak var segmentButton: UISegmentedControl! override func viewDidLoad() { super.viewDidLoad() setup() } func setup(){ segmentButton.setTitle("今日の結果", forSegmentAt: 0) segmentButton.setTitle("表を作る", forSegmentAt: 1) ResultVC.view.backgroundColor = UIColor.cyan SetVC.view.backgroundColor = UIColor.magenta self.view.addSubview(ResultVC.view) self.view.addSubview(SetVC.view) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } @IBAction func segmentButton(_ sender: UISegmentedControl) { switch sender.selectedSegmentIndex { case 0: self.view.bringSubview(toFront: ResultVC.view) case 1: self.view.bringSubview(toFront: SetVC.view) default: print("") } }
}
補足情報(FW/ツールのバージョンなど)
Xcode10/Swift
回答1件
あなたの回答
tips
プレビュー