Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/uikit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7254,7 +7254,9 @@ interface IUITextInput {}
interface UITextInput : UIKeyInput {
[Abstract]
[NullAllowed] // by default this property is null
[Export ("selectedTextRange", ArgumentSemantic.Copy)]
// This is declared as ArgumentSemantic.Copy, but UITextRange doesn't conform to NSCopying.
// Also declaring it as ArgumentSemantic.Copy makes UIKIt crash: https://github.com/xamarin/xamarin-macios/issues/15677
[Export ("selectedTextRange")]
UITextRange SelectedTextRange { get; set; }

[Abstract]
Expand Down