I have several UITextfields, I am trying to set the first responder to be the first UITextField which its tag should equal 0.
This is how I am trying to achieve this in code
[[self.cutField viewWithTag:0] becomeFirstResponder];
But the problem being is that this UITextField never becomes the first responder.