使用未声明的类型' UIViewController'

时间:2016-07-27 06:55:59

标签: ios swift uiviewcontroller segue

我正在使用segue将文件传输到下一个UIViewController。 第一个View的名称是RecordSoundsViewController,第二个视图的名称是PlaySoundsViewController。 当我使用segue.destinationViewController作为! PlaySoundsViewController它显示错误"使用未声明的类型' PlaySoundsViewController"。 我不知道如何声明UIViewController的类型。 请帮忙

enter image description here

2 个答案:

答案 0 :(得分:1)

您使用多个目标吗?如果是,请从身份检查员中选择Target-membership中适用的目标。

或者检查public,private类的访问级别。

答案 1 :(得分:0)

请尝试以下。

let vc = self.storyboard?.instantiateViewController(withIdentifier: "PlayVC") as! PlaySoundsViewController

vc."id to receive" = "the value to send"

self.navigationController?.pushViewController(vc, animated: true)