swift - iOS9: UITextField is not allowing to Copy/Paste -


in older versions, copy, paste , other symbols coming. in ios9, not. how enable these options in ios9?

thanks

try adding following code in viewcontroller.

override func canperformaction(action: selector, withsender sender: anyobject?) -> bool {     return true } 

Comments