MonobjcMonobjc Documented Class Library
LocationManagerDidUpdateToLocationFromLocation Method (manager, newLocation, oldLocation)
NamespacesMonobjc.CoreLocationICLLocationManagerDelegateLocationManagerDidUpdateToLocationFromLocation(CLLocationManager, CLLocation, CLLocation)

Tells the delegate that a new location value is available.

Original signature is '- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
void LocationManagerDidUpdateToLocationFromLocation(
	CLLocationManager manager,
	CLLocation newLocation,
	CLLocation oldLocation
)
Sub LocationManagerDidUpdateToLocationFromLocation ( _
	manager As CLLocationManager, _
	newLocation As CLLocation, _
	oldLocation As CLLocation _
)
void LocationManagerDidUpdateToLocationFromLocation(
	CLLocationManager^ manager, 
	CLLocation^ newLocation, 
	CLLocation^ oldLocation
)
Parameters
manager (CLLocationManager)
The location manager object that generated the update event.
newLocation (CLLocation)
The new location data.
oldLocation (CLLocation)
The location data from the previous update. If this is the first update event delivered by this location manager, this parameter is nil.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.CoreLocation (Module: Monobjc.CoreLocation)