AsyncBridge.portable for Xamarin.ios

I created an application with mvvmcross and I want to configure WPF, andoid and ios.

I used the task and async / await in my main PCL library. It works with WPF and Android because I use Microsoft.Bcl.Async and AsyncBridge.Portable from Daniel Plaisted.

My problem is with the ios version because Daniel did not implement AsyncBridge.Portable for ios.

I would like to know, someone made it or someone knows where I can find Daniel AsyncBridge.Portable source code?

If Daniel, you see this post, can you explain to me how I can make the ios version? :)

thanks

+4
source share
1 answer

Here you can find the source code here . From this, you can simply adapt the Android code to work on iOS.

However, official support for Xamarin PCL will come soon (-ish), and this may change the way you need to do this (or make it so that you don't need to do this at all).

+4
source

Source: https://habr.com/ru/post/1483783/


All Articles