Can we enable the cut copy paste menu for a UILabel as it is for a UITextField?
UILabel
UITextField
If not, and I need to convert my UIL
UIL
Override the UITextField instance's textFieldShouldBeginEditing method, and set it to return NO in order to disable editing.
textFieldShouldBeginEditing
NO
Take a look at the UITextFieldDelegate protocol for more details.