如何在swift中显示自定义键盘应用中的小弹出窗口?

时间:2015-06-09 03:36:12

标签: ios swift

我的应用程序是一个键盘扩展应用程序,我需要显示一个漂亮的小弹出窗口,复制一旦我将图像复制到粘贴板。

let data = UIImagePNGRepresentation(drawView.getImage())
UIPasteboard.generalPasteboard().setData(data!, forPasteboardType: "public.png")

我需要显示一个漂亮的弹出窗口,在此代码后面写着“复制”。

2 个答案:

答案 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中使用

https://github.com/alexleutgoeb/ALToastView