Do you have Localizable.strings? If so, see this http://stackoverflow.com/questions/15647987/localizable-strings-causing-plist-parsing-error (View Post)
LoadView is a method you can override in order to create a controller’s view in code. For example, public override void LoadView () { base.LoadView (); this.View = new SomeView(); ... } ViewDidLoad i… (View Post)
You can right click (or ctrl-click) on the storyboard in Xamarin Studio and select open in Xcode. Drag outlets to the header as usual in Xcode and Xamarin Studio will generate properties for the outl… (View Post)
Hi Sean, This code will get you the path to the Library folder: var docsPath = Environment.GetFolderPath (Environment.SpecialFolder.MyDocuments);var libPath = Path.Combine (docsPath, "..", … (View Post)