Home > database >  Xamarin.ios, Failed to lookup the required marshalling information
Xamarin.ios, Failed to lookup the required marshalling information

Time:08-01

I am trying to use an outlet to alter the text in a TextField, but whenever I make any reference to the outlet, I receive an error saying "Failed to lookup the required marshaling information". I am new to Xamarin.IOS, and working with Xcode, and I have searched for an answer to my issue but there is nothing that fixes my issue.

ClientClass.cs

ClientClass.designer.cs

Inspector of ViewController using ClientClass

CodePudding user response:

I figured it out, The issue with my case is I wasn't writing my code in the correct method. I guess you have to write your code in the ViewDidLoad method as I understand.

  • Related