enumを使ってそれぞれのcaseごとにsegueを行いたいのですが、
switch indexPath.row {}のところでExpected declarationというエラーが出てしまいます。
調べたところ関数のなかに処理を書かなければいけないということで、
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}
のなかに書かれていることを確認しましたがうまくいってくれません。。。
何かアドバイス頂けると幸いです。
class FoodMenuViewController: UIViewController,UITableViewDataSource,UITableViewDelegate{ @IBOutlet var tableView :UITableView! let menus : [String] = ["犬","猫","小動物","鳥類","爬虫類","両生類","魚類","その他"] override func viewDidLoad() { super.viewDidLoad() tableView.delegate = self tableView.dataSource = self //tableviewの不要な線を消す tableView.tableFooterView = UIView() } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return menus.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell")! cell.textLabel?.text = menus[indexPath.row] return cell } func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { enum howFoodMenu :Int { case dog = 0 case cat case smallAnimal case bird case reptile case amphibian case fish case elses var seugeIdentifier: String { switch self { case .dog: return "toDogFood" case .cat: return "toCatFood" case .smallAnimal: return "toSmallAnimalFood" case .bird: return "toBirdFood" case .reptile: return "toReptileFood" case .amphibian: return "toAmphibian" case .fish: return "toFishFood" case .elses: return "toElsesFood" } } switch indexPath.row{ //ここでエラー case howmenufood.dog: self.performSegue(withIdentifier: howFoodMenu.dog.seugeIdentifier, sender: nil) case howFoodMenu.cat: self.performSegue(withIdentifier: howFoodMenu.cat.seugeIdentifier, sender: nil) case howFoodMenu.smallAnimal: self.performSegue(withIdentifier: howFoodMenu.smallAnimal.seugeIdentifier, sender: nil) case howFoodMenu.bird: self.performSegue(withIdentifier: howFoodMenu.bird.seugeIdentifier, sender: nil) case howFoodMenu.reptile: self.performSegue(withIdentifier: howFoodMenu.reptile.seugeIdentifier, sender: nil) case howFoodMenu.amphibian: self.performSegue(withIdentifier: howFoodMenu.amphibian.seugeIdentifier, sender: nil) case howFoodMenu.fish: self .performSegue(withIdentifier: howFoodMenu.fish.seugeIdentifier, sender: nil) case howFoodMenu.elses: performSegue(withIdentifier: howFoodMenu.fish.seugeIdentifier, sender: nil) } } } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/07 15:09
2019/09/08 07:18
2019/09/08 08:08