在 swift 中点击 Instagram 上的复制 link 时是否可以打开自定义弹出窗口

is it possible to open custom popup when click on copy link on instagram in swift

我开发了一个应用程序,在其中我在 wkwebview 中打开 Instagram,我想在用户通过点击三个点来点击副本 link 时打开弹出窗口。

在加载视图中添加此代码-:

NotificationCenter.default.addObserver(self, selector: #selector(clipboardChanged),
                                           name: UIPasteboard.changedNotification, object: nil)

此外,如果您想在此事件中在剪贴板中打开弹出窗口 -:

@objc func clipboardChanged(){
    let pasteboardString: String? = UIPasteboard.general.string
    if let theString = pasteboardString {
        print("String is \(theString)")
       
          // Open your view controller here 
        
    }
}