I'm building an app on visual studio xamarin.ios but the story board opens up with this message "custom components are not being rendered because problems were detected".
I've tried deleting directories named "bin" and "obj" in the project's folder yet the problem persists. Also a log file comes up saying "MonoTouchDesignServerUnified quit unexpectedly".
Here is a screenshot of the log file.
There is a bug in current version of Xamarin on how it handle the
UIViewController
define in storyboard. Apparently if theUIViewController
define in storyboard, it will add as a custom component. Hence, it will try to execute the code inViewDidLoad, ViewWillAppear...
when the storyboard is open.The solution temporary is set the flag
DesignTimeVisible
to false for thoseUIViewController
that is define in storyboard. Xamarin already said that it is fixed and will release in coming version.You can refer for more detail in my blog HERE