-
Notifications
You must be signed in to change notification settings - Fork 423
New issue
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
Support long text #9
base: master
Are you sure you want to change the base?
Conversation
If the text is greater than 5 lines it gets truncated. This switches from using a UILabel to a UITextView. If the text is longer than 5 lines it can now be scrolled, whilst still limiting the size of the alert, and allowing the alert to remain small for short text.
Missed setting UITextView editing off
In |
This is true. But set it to a high number and you will notice the popup box will grow larger than the bounding window causing the action buttons to disappear off the bottom of the screen. |
+1 |
2 similar comments
+1 |
+1 |
can this change request be included in master and next version? |
Conflicts: SIAlertView/SIAlertView.m
if alert being shown when another gets shown, they no longer stack and the last to be shown wins and cleans up the rest
reverse last commit
If the text is greater than 5 lines it gets truncated.
This switches from using a UILabel to a UITextView. If the text is longer than 5 lines it can now be scrolled, whilst still limiting the size of the alert, and allowing the alert to remain small for short text.