We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, i am have issue with custom UITextfield which has different textRect and editingTextRect. In UITextField+NUI.m found override_editingRectForBounds
- (CGRect)override_editingRectForBounds:(CGRect)bounds { return [self textRectForBounds:bounds]; }
Seems to be it is a bug, i guess method implementation should be:
- (CGRect)override_editingRectForBounds:(CGRect)bounds { return [self override_editingRectForBounds:bounds]; }
The text was updated successfully, but these errors were encountered:
Good catch. If you submit a pull request we'd be happy to review it. If you could throw in some test cases as well that would be superb.
Sorry, something went wrong.
UITextField different textRect for editing and static text. tombenner…
6399441
…#344 UITextField+NUI.m fix override_editingRectForBounds method.
No branches or pull requests
Hi, i am have issue with custom UITextfield which has different textRect and editingTextRect.
In UITextField+NUI.m found override_editingRectForBounds
Seems to be it is a bug, i guess method implementation should be:
The text was updated successfully, but these errors were encountered: