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

MacOS react native error bundler: failed to load command: pod

I tried creating a new project in react native: npx react-native@latest init myApp > gem which cocoapods /Users/nameUser/.rbenv/versions/3.2.2/lib/ruby/gems/3.2.0/gems/cocoapods-1.13.0/lib/cocoapods.rb When creating the project I get this: Installing CocoaPods dependencies (this may take a few minutes) error bundler: failed to load command:…

VIEW QUESTION
Back To Top
Search