gpt4 book ai didi

ios - 将 Viewcontroller 作为参数传递

转载 作者:可可西里 更新时间:2023-11-01 00:36:36 26 4
gpt4 key购买 nike

我正在制作一个分享类。这个类会在我的项目中多次使用。所以我在那里定义了很多方法,其中一个参数指定了 refrence UIViewcontroller,我想在其上呈现类似 SLComposeViewController 的内容。我只想问一件事,将 UIVIewcontroller 作为参数传递是正常的还是不建议将 UIVIewController 作为参数传递

// ViewController Class
class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

@IBAction func shareFacebook(sender: UIButton) {
let sharePanelObj = SharePanel()
sharePanelObj.facebookShare(self)
}

@IBAction func shareTwitter(sender: UIButton) {
}
}


// Reusable Base Class
class SharePanel: NSObject {

func facebookShare (refrenceViewController:UIViewController) -> () {
if SLComposeViewController.isAvailableForServiceType(SLServiceTypeFacebook) {
let fbShare:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeFacebook)

refrenceViewController.presentViewController(fbShare, animated: true, completion: nil)

} else {
let alert = UIAlertController(title: "Accounts", message: "Please login to a Facebook account to share.", preferredStyle: UIAlertControllerStyle.Alert)

alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
refrenceViewController.presentViewController(alert, animated: true, completion: nil)
}
}
}

最佳答案

我没有看到将您的 viewviewController 作为此用途的参数发送有任何问题,但将这些方法添加为 扩展可能会更清晰UIViewController 然后你可以只对 self 而不是参数进行操作。

如果您保留对 View Controller 的引用,则需要考虑的一件事可能是内存管理。这可能会影响设置 View 时经常依赖的 View 的加载和卸载。

关于ios - 将 Viewcontroller 作为参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37066064/

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