skip to Main Content

Ios swift – Adding Tap gesture recognizer to only text of UITextfield which is Uneditable

I am adding tap gesture recognizer in a table view like this. # let tapGestureRecognizer = CustomTapGestureRecogniser(target: self, action: #selector(openMethod(tapGestureRecognizer:))) tapGestureRecognizer.data = indexPath.row cell.textField.isUserInteractionEnabled = true cell.textField.addGestureRecognizer(tapGestureRecognizer) But the whole textfield is clickable, I want this only on click of…

VIEW QUESTION

Xcode – Failed to convert from bundle ID

After updating to iOS 17 and Xcode 15, the following warning appears in Xcode: -warning- nw_parameters_set_source_application_by_bundle_id_internal Failed to convert from bundle ID (my bundel ID) to UUID. This could lead to wrong data usage accounting. How do I solve this…

VIEW QUESTION
Back To Top
Search