-
Notifications
You must be signed in to change notification settings - Fork 45
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
Ui not showing in Xamarin.iOS #21
Comments
@rusty21 its basically the same thing on Android I'm not sure if this is being maintained anymore |
I cannot reproduce this in Sample. Can you try this in Sample project? |
The problem stems from the fact that my root view controller is a navigation controller which isn't handled currently. In this file |
Im also have same problem. did you fixed it? |
@rusty21 did you find a workaround for this problem? |
We ended up dropping some requirements that caused us to seek out this library. However, Its a relatively simple fix. I downloaded the source for the project, included all the code in my project, then I debugged the TEditor library to find where things were going wrong. Turns out it was in this file https://github.com/XAM-Consulting/TEditor/blob/master/iOS/TEditorImplementation.cs the change was relatively trivial. I'm assuming you'll just have to modify this file to work with the navigation in your project. |
@rusty21 thanks mate!!! |
Same Problem I was faced in Xamarin.ios. After update the visual studio Mac and Xamarin studio . this problem was solved automatically. |
why in Xamarin.ios |
I was finally able to step through IOS after bringing into my project, as I was having same problem described above. The navigation was not correctly picking up the proper viewcontroller (the one thats the navigation). On my app I was able to add the following to resolve. This will likely need to be changed to work in every case, but I didn't have a way to test easily all scenarios (i.e. Tabbed navigation). Took me hours, so hope it helps the next person. Replaced in IOS TEditorImplementation.cs
with
|
Calling
var response = await CrossTEditor.Current.ShowTEditor("<strong>TESTING</strong><p>yolo</p>");
in a Xamarin.iOS app does nothing. No UI is shown, and theawait
call never comes back. Any ideas?The text was updated successfully, but these errors were encountered: