XAMAIN Studio iOS build error

After I updated my Xamarin Studio (iOS), it gives me this error when trying to create / debug.

I have no idea how to fix this, it would be helpful to help

Error:

The type 'MonoTouch.UIKit.UIView' is defined in an assembly that is not referenced. Consider adding a reference to assembly 'monotouch, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' 

I am using "AlexTouch.MBProgressHUD.dll" and I have added it to my applications.

+1
source share
1 answer

The monotouch.dll public key monotouch.dll changed in Xamarin.iOS 6.2 (it is not null anymore).

You will need to recompile the bindings (or assemblies) that relate to monotouch.dll , or use the tool ( from this thread ) to update them.

+4
source

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


All Articles