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
UIViewControllerdefine in storyboard. Apparently if theUIViewControllerdefine 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
DesignTimeVisibleto false for thoseUIViewControllerthat 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