Click here to Skip to main content
15,905,616 members
Everything / MonoTouch

MonoTouch

MonoTouch

Great Reads

by Yvan Rodrigues
There is a very high virtual memory penalty if you do.

Latest Articles

by Yvan Rodrigues
There is a very high virtual memory penalty if you do.

All Articles

Sort by Score

MonoTouch 

14 Feb 2014 by Yvan Rodrigues
After many weeks I found it. I compared the csproj sections of Release and AppStore builds, and the AppStore had the additional line:FullSince my app uses reflection to invoke the RESTful client library, the linker did not think I needed certain functionality and optimized it away.
13 Jan 2015 by Snesh Prajapati
It seems you need to write total 4 methods - 2 for each direction of conversion - we need to write an extension method for each type (nullable and not nullable) and you cannot club them in one method as given...
14 Jan 2015 by bfb
In Converting DateTime to NSDate the following extension methods are proposed:public static DateTime NSDateToDateTime(this NSDate date){ DateTime reference = TimeZone.CurrentTimeZone.ToLocalTime( new DateTime(2001, 1, 1, 0, 0, 0) ); return...
14 Jan 2015 by bfb
public static DateTime? NSDateToDateTime(this NSDate date){ if (date == null) { return null; } else { DateTime reference = TimeZone.CurrentTimeZone.ToLocalTime (new DateTime (2001, 1, 1, 0, 0, 0)); return (DateTime?)reference.AddSeconds...
26 Jan 2015 by bfb
Does anyone know how to reference Library/Caches directory as baseUrl for UIWebView in C#?Normally you would useNSUrl baseUrl = new NSUrl (NSBundle.MainBundle.BundlePath, true);
26 Jan 2015 by KarstenK
Path.GetDirectoryName(Assembly...
21 Mar 2016 by jamesmc1535
i get a build error using xamarin , the program used to run , i did a reinstall on my new laptop and now it doesnt work , tried doing a recode still same error, im thinking the program has something it depends on is there a way to see what it might be? heres the build log -...
31 Oct 2014 by Yvan Rodrigues
There is a very high virtual memory penalty if you do.
31 Jan 2014 by Yvan Rodrigues
I've been fighting this one for a few weeks, and haven't had any luck. Hope you might be able to help. I'm also trying Apple Developer Support and Xamarin. This app, originally writted for iOS