Posts by Paulo Rodrigues • 6,280 points
201 posts
-
2
votes2
answers237
viewsA: Disable Return button of`Uitextfield`
What you can do to prevent this is to use the delegate textFieldShouldReturn: of Uitextfield, so for example: - (BOOL)textFieldShouldReturn:(UITextField *)textField { return NO; } At least in the…