美文网首页
iOS swift-利用口令和粘贴板实现商店跳转,查找店铺

iOS swift-利用口令和粘贴板实现商店跳转,查找店铺

作者: 青菜白玉堂 | 来源:发表于2017-05-08 17:15 被阅读85次

if (HuoDongURL.range(of: "tmall") != nil) {

//不替换掉前缀https为tmall的话,打不开天猫

let tmallUrl = HuoDongURL.replacingOccurrences(of: "https", with: "tmall")

print("复制板内容前:\(UIPasteboard.general.string)")

//给系统剪切板设置内容

UIPasteboard.general.string = "分享生成的口令"

//应用内可用的剪切板

//UIPasteboard.withUniqueName().string = ""

print("复制板内容后:\(UIPasteboard.general.string)")

//判断能否打开天猫

if UIApplication.shared.canOpenURL(tmallUrl!) {

print("打开天猫")

UIApplication.shared.openURL(tmallUrl!)

}

相关文章

网友评论

      本文标题:iOS swift-利用口令和粘贴板实现商店跳转,查找店铺

      本文链接:https://www.haomeiwen.com/subject/vpfvtxtx.html