gpt4 book ai didi

swift - 超链接按钮始终打开 google.com

转载 作者:行者123 更新时间:2023-11-30 12:40:15 26 4
gpt4 key购买 nike

我执行了打开链接的操作,但是当我按下它时,它总是打开 google.com(模拟器和真实手机)。仅仅是因为它是从 xcode 启动的还是其他东西?这是代码

@IBAction func linkPremium(sender: AnyObject) {
UIApplication.shared.openURL(NSURL(string:"http://www.apple.com") as! URL)
}


func createMenu() {
let menuWidth: CGFloat = self.view.frame.width/2
let menuHeight: CGFloat = self.view.frame.height


let ee = UIButton (frame: CGRect(x:0,y:280, width: menuWidth,height: 60.0))
ee.setTitle("Premium", for: .normal)
ee.setTitleColor(UIColor.black, for: .normal)

ee.addTarget(self, action: #selector(linkPremium(sender:)), for: .touchUpInside)
menuView.addSubview(ee)
view.addSubview(menuView)
}



override func viewDidLoad() {
super.viewDidLoad()

createMenu()
}

最佳答案

当我在模拟器中运行此行时

UIApplication.shared.openURL(NSURL(string:"http://www.apple.com") as! URL)

它会打开 apple.com

检查您的 closeMenu 函数以查看是否进行了任何更改

关于swift - 超链接按钮始终打开 google.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42320028/

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