[MonoTouch] Case problem on method CLLocation.DistanceFrom

2011-09-26 Thread Hugo Logmans
Hi all, I am using Remobjects Oxygene (Delphi Prism) to create iPhone apps using MonoTouch. So for all works well, but I run into one problem: the class CoreLocation.CLLocation object seems to have both an DistanceFrom and Distancefrom member with the same parameters. Probably one of both is an in

Re: [MonoTouch] Case problem on method CLLocation.DistanceFrom

2011-09-26 Thread Jeff Stedfast
Hi Hugo, This seems to be the difference: [Export ("getDistanceFrom:")] double Distancefrom (CLLocation location); // NOTE: The old selector was renamed to this guy in 3.2 [Since (3,2)] [Export ("distanceFromLocation:")] double DistanceFrom (CLLocation location); Looks like the old Distancefro