OGeek|极客世界-中国程序员成长平台

标题: ios - 如何在 Xcode 中从 UIActivityViewController 共享用户位置 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 11:19
标题: ios - 如何在 Xcode 中从 UIActivityViewController 共享用户位置

我知道如何共享其他对象,例如图像、网址、字符串或其他。但我不知道如何从 UIActivityViewController 共享当前位置。 我试过了

    @IBAction func sendLocation(sender: UIBarButtonItem) {
    if mapView.userLocationVisible {
        let currentCoordinate = mapView.userLocation.location!
        print(currentCoordinate)
        let arrayLocation = [currentCoordinate]

        let activityController = UIActivityViewController(activityItems: arrayLocation, applicationActivities: nil)
        presentViewController(activityController, animated: true, completion: nil)
    } else {
        print("User location is not visible")
    }
}

但我在控制台中看到 <+53.09618071,+49.96449468> +/- 20.00m(速度 0.00 mps/路线 -1.00)@ 2015 年 10 月 11 日,萨马拉标准时间下午 1:54:26UIActivityViewController 不共享任何位置。请帮帮我。



Best Answer-推荐答案


        @IBAction func shareLocation(sender: UIBarButtonItem) {
//        print(receivedDictionary)
        let postalAdress = CNMutablePostalAddress()
        postalAdress.street = receivedDictionary["Name"] as! String
        postalAdress.city = receivedDictionary["City"] as! String
        postalAdress.state = receivedDictionary["State"] as! String
        postalAdress.postalCode = receivedDictionary["ZIP"] as! String
        postalAdress.country = receivedDictionary["Country"] as! String
        postalAdress.ISOCountryCode = receivedDictionary["CountryCode"] as! String

        let streetName = receivedDictionary["Name"] as! String

        let urlAddress = receivedDictionary["FormattedAddressLines"] as! [String]
//        print(urlAddress)
        let postalContact = CNLabeledValue(label: streetName, value: postalAdress)
        let urlAddressContact = CNLabeledValue(label: "map url", value: "http://maps.apple.com/maps?address=\(urlAddress.description)")

        let contact = CNMutableContact()
        contact.contactType = .Organization
        contact.organizationName = streetName
        contact.departmentName = streetName
        contact.postalAddresses = [postalContact]
        contact.urlAddresses = [urlAddressContact]

        // create path

        let directory = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)

        let path = directory.first!.path!.stringByAppendingString("/\(streetName).loc.vcf")
//        print(path)

        do {
            let contactData = try CNContactVCardSerialization.dataWithContacts([contact])

            contactData.writeToFile(path, atomically: true)

            let url = NSURL(fileURLWithPath: path)
//            print(url)
            let activityViewController = UIActivityViewController(activityItems: [url], applicationActivities: nil)
            presentViewController(activityViewController, animated: true, completion: nil)
        } catch {
            print("CNContactVCardSerialization cannot save address")
        }
    }

关于ios - 如何在 Xcode 中从 UIActivityViewController 共享用户位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33063717/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://sqlite.in/) Powered by Discuz! X3.4