gpt4 book ai didi

swift - 使用未声明的类型 'MainGameScreenViewController'

转载 作者:行者123 更新时间:2023-11-28 14:27:56 25 4
gpt4 key购买 nike

大家好我昨晚在我的项目中遇到了一个奇怪的问题,即使我没有在我的 GameScreenViewController.swift 类中进行任何更改,它向我展示了代码中未声明类型“UIViewController”的使用

import UIKit
import ChameleonFramework
import RealmSwift
import AVFoundation

class GameScreenViewController: UIViewController, UITableViewDelegate,UITableViewDataSource, UITextFieldDelegate, PlayerInformationCellTableViewCellDelegate {

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "mainGameScreen"{
let nextVC = segue.destination as! MainGameScreenViewController
for item in tempPlayers{
nextVC.playerArray.append(item)
}
}
}

}

MainGameScreenViewController.swit

import UIKit
import RealmSwift
import ChameleonFramework
import AVFoundation


class MainGameScreenViewController: UIViewController {

var playerArray: [Player] = [] //container for the player

}

完整错误是 Use of undeclared type 'MainGameScreenViewController'

谁能帮帮我?我遇到了一些问题,但没有解决我的问题。

最佳答案

我必须将你写错过类(class)的文件包含到相应的目标中。打开文件时,只需在 XCode 的右侧面板中启用复选框即可。

关于swift - 使用未声明的类型 'MainGameScreenViewController',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51444209/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com