Replies: 2 comments 10 replies
-
Maybe actual code might help. This crashes the extension (log says
This has no affect:
Is there someway to associate Avalonia w/ an existing ViewController? Keyboard extensions aren't normal apps (no |
Beta Was this translation helpful? Give feedback.
10 replies
-
You likely can skip IAvaloniaViewController/InitWithController part, as it's only used for insets manager. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm making an iOS custom keyboard and can't get an
AvaloniaView
to load properly into theUIInputViewController.View
fromviewDidLoad()
. It crashes unless I create theAvaloniaView
in aDispatcher.UIThread
frame but doingUIInputViewController.View.AddSubView
insideDispatcher.UIThread
appears to have no affect when showing the keyboard.Also should mention I implemented
IAvaloniaViewController
and callAvaloniaView.InitWithController
but that doesn't change anything either.Does anyone have any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions