- Notifications
You must be signed in to change notification settings - Fork548
[UIKit] Partial update to Xcode 11 Beta 1, 2 and 3 - Part 2 of ?#6553
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
5ad8da71b10a674fc97a992d6eb96120fad7e33f70692b68b57fa5f4a09e1ebb0704e3File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
… did not really fix it 🙃This reverts commit692b68b.The right fix is to expose NSWritingDirection in foundation
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1136,17 +1136,19 @@ public enum UITextDirection : long { | ||
| Forward, Backward, Right, Left, Up, Down | ||
| } | ||
| // NSInteger -> UITextInput.h | ||
| // NSWritingDirection== UITextWritingDirection | ||
| [Native] | ||
| [NoWatch] | ||
| #if XAMCORE_4_0 | ||
| public enum NSWritingDirection : long { | ||
| #else | ||
| public enum UITextWritingDirection : long { | ||
| #endif | ||
| ||
| Natural = -1, | ||
| LeftToRight, | ||
| RightToLeft, | ||
| } | ||
| // NSInteger -> UITextInput.h | ||
| [Native] | ||