Swift 4 - 通过UIActivityViewController共享位置

时间:2017-11-16 16:49:21

标签: ios swift

我正在尝试构建一个应用程序,我可以在任何导航应用程序(Google地图,Apple地图,waze,...)中共享地址并打开它。 以下是我目前的代码(在浏览了谷歌搜索结果页面之后,包括几十个stackoverflow问题)

@IBAction func navigeer(_ sender: Any) {
    var items = [AnyObject]()



    let latitude: Double = 52.033809
    let longitude: Double = 6.882286

    let locationTitle = "Navigate to this address"
    let URLString = "https://maps.apple.com?ll=\(latitude),\(longitude)"

    guard let cachesPathString = NSSearchPathForDirectoriesInDomains(.cachesDirectory, .userDomainMask, true).first else {
        print("Error: couldn't find the caches directory.")
        return
    }

    if let url = NSURL(string: URLString) {
        items.append(url)
    }

    let vCardString = [
        "BEGIN:VCARD",
        "VERSION:3.0",
        "N:;Shared Location;;;",
        "FN:Shared Location",
        "item1.URL;type=pref:http://maps.apple.com/?ll=\(latitude),\(longitude)",
        "item1.X-ABLabel:map url",
        "END:VCARD"
        ].joined(separator: "\n")

    let vCardFilePath = (cachesPathString as NSString).appendingPathComponent("vCard.loc.vcf")

    let nsVCardData = NSURL(fileURLWithPath: vCardFilePath)
    let shareItems:Array = [nsVCardData]

    let activityController = UIActivityViewController(activityItems: shareItems, applicationActivities: nil)
    present(activityController, animated:true, completion: nil)
}

当我在我的模拟器上运行应用程序时,我得到以下内容:

After clicking the share button

为什么我没有获得Apple地图或Google地图等应用建议?我也不明白为什么它建议我把它复制到联系人..

提前致谢。

2 个答案:

答案 0 :(得分:0)

尝试一下。

// if the device has google maps installed in it

if (UIApplication.shared.canOpenURL(NSURL(string:"comgooglemaps://")! as URL)) {

            UIApplication.shared.openURL(NSURL(string:
                "comgooglemaps://?saddr=&daddr=\(myLatitude),\(myLongitude)&directionsmode=driving")! as URL)

        }
// if google maps is not installed, try apple map

else if (UIApplication.shared.canOpenURL(NSURL(string:"http://maps.apple.com/maps")! as URL)) {
            // apple map
            let url = "http://maps.apple.com/maps?saddr=\(from.latitude),\(from.longitude)&daddr=\(to.latitude),\(to.longitude)"
            UIApplication.shared.openURL(URL(string:url)!)
        }

// if apple map is also not there, it will show an appStore link to download apple map application.

答案 1 :(得分:0)

要使用UIActivityViewController,Swift 5共享位置

func activityItems(latitude: Double, longitude: Double) -> [AnyObject]? {
        var items = [AnyObject]()

        let URLString = "https://maps.apple.com?ll=\(latitude),\(longitude)"

        if let url = NSURL(string: URLString) {
            items.append(url)
        }

        let locationVCardString = [
            "BEGIN:VCARD",
            "VERSION:3.0",
            "PRODID:-//Joseph Duffy//Blog Post Example//EN",
            "N:;Shared Location;;;",
            "FN:Shared Location",
            "item1.URL;type=pref:\(URLString)",
            "item1.X-ABLabel:map url",
            "END:VCARD"
        ].joined(separator: "\n")

        guard let vCardData : NSSecureCoding = locationVCardString.data(using: .utf8) as NSSecureCoding? else {
            return nil
        }

        let vCardActivity = NSItemProvider(item: vCardData, typeIdentifier: kUTTypeVCard as String)

        items.append(vCardActivity)

        return items
    }

如何使用?

if let shareObject = self.activityItems(latitude: 52.033809, longitude: 6.882286) {
       //open UIActivityViewController 
}

参考链接:https://new.josephduffy.co.uk/posts/ios-share-sheets-the-proper-way-locations