在swift中导入自定义类?

时间:2015-06-05 21:52:26

标签: ios swift

我有一个简单的主 - 细节设置,有两个表视图控制器。在主控制器中,我创建了一个自定义类,我想在我的详细控制器中使用这个自定义类。现在我知道swift已经废除了实现类,但是当我尝试在我的详细控制器中创建这个类的新对象时,它就像“未声明”一样。应该有进口声明吗?还是我错过了什么?这是我主人的代码预览:

import UIKit

class FirstTableViewController: UITableViewController {
    class Continent {
        var name: String = "Country name"
        var continentCountry: ["countries of selected continent"]
    }
} 

1 个答案:

答案 0 :(得分:0)

如果您尝试访问Continent,则需要在其前面添加FirstTableViewController

let continent = FirstTableViewController.Continent()

请查看The Swift Programming Language: Nested Types了解详情。