зеркало из https://github.com/xamarin/ios-samples.git
[SimpleTextInput] Fix InputDelegate to be of the right type. ObjC can call us with any type conforming to the right protocol. Fixes #18339.
This commit is contained in:
Родитель
5366c26351
Коммит
11e28ef881
|
@ -21,7 +21,7 @@ namespace SimpleTextInput
|
|||
UITextInputStringTokenizer tokenizer;
|
||||
SimpleCoreTextView textView;
|
||||
NSDictionary markedTextStyle;
|
||||
UITextInputDelegate inputDelegate;
|
||||
IUITextInputDelegate inputDelegate;
|
||||
|
||||
public delegate void ViewWillEditDelegate (EditableCoreTextView editableCoreTextView);
|
||||
public event ViewWillEditDelegate ViewWillEdit;
|
||||
|
@ -103,7 +103,7 @@ namespace SimpleTextInput
|
|||
|
||||
#region UITextInput methods
|
||||
[Export ("inputDelegate")]
|
||||
public UITextInputDelegate InputDelegate {
|
||||
public IUITextInputDelegate InputDelegate {
|
||||
get {
|
||||
return inputDelegate;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче