gpt4 book ai didi

Swift:带参数的 NSURL 无效

转载 作者:行者123 更新时间:2023-11-30 10:12:01 24 4
gpt4 key购买 nike

这是我与 UIActivityViewController 共享 Google map 链接的代码:

 if let myWebsite = NSURL(string: "http://maps.google.com/?q=<\(myLatitude)>,<\(myLongitude)>") {
let objectsToShare = [alertMessage, myWebsite]
let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil)
//New Excluded Activities Code
activityVC.excludedActivityTypes = [UIActivityTypeAirDrop, UIActivityTypeAddToReadingList]
self.presentViewController(activityVC, animated: true, completion: nil)
}

此链接无效;不调用 if 语句。我该如何解决这个问题?

最佳答案

您的 NSURL 的格式应如下所示:

let myWebsite = NSURL(string: "http://maps.google.com/?q=\(myLatitude),\(myLongitude)")

要在字符串中使用字符串,您应该编写

"My string \(otherString)";

关于Swift:带参数的 NSURL 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32454433/

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