gpt4 book ai didi

swift - 如何将 swift 文件导入另一个文件

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

如何在另一个 swift 文件中导入一个 swift 文件,以便我可以使用变量。这是我来自 menuViewController.swift 的代码,我想使用变量 selectedObject

import UIKit

class menuViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

var selectedObject: String!
}

我想在 ViewController.swift 中使用上述文件中的变量。这是我的 ViewController.sswift

import UIKit

class ViewController: UIViewController, UIAlertViewDelegate {

}

最佳答案

如果它们在同一目标中,则无需导入其他 Swift 文件。

import UIKit

class MenuViewController: UIViewController {

var selectedObject: String!
}


class ViewController: UIViewController {
let menuViewController = MenuViewController()


func doSomething() {
menuViewController.selectedObject = "foo"
}
}

以上对我来说工作正常。

关于swift - 如何将 swift 文件导入另一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25248110/

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