I have a UITextField
that contains code to activate an app. For that UITextField
, I want the Copy option only. I can do this by overriding canPerformAction:withSender:
However I want to know, is there any IBAction
or delegate which will tell me that copying is done?
What I want to do is after clicking Copy, I directly want to go to screen where I will paste the code and get the app activated.
Any idea how to get this done?