我的应用程序是一个键盘扩展应用程序,我需要显示一个漂亮的小弹出窗口,复制一旦我将图像复制到粘贴板。
let data = UIImagePNGRepresentation(drawView.getImage())
UIPasteboard.generalPasteboard().setData(data!, forPasteboardType: "public.png")
我需要显示一个漂亮的弹出窗口,在此代码后面写着“复制”。
答案 0 :(得分:2)
我发现这个API对我非常有用。 https://github.com/devxoul/JLToast
请在此处查看我的更新代码。
@IBAction func openLink {
let pth = "http://www.google.com"
if let url = NSURL(string: pth){
UIApplication.sharedApplication().openURL(url)
}
答案 1 :(得分:0)
如果你想暂时弹出一些这里好的一个用Objective C编写的库你可以在swift中使用