blob: 9852ed854c245f8eb8bb0cbc8d6f83e249a30dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ Parsed from MapKit.framework MKUserLocation.h }
{$ifdef TYPES}
type
MKUserLocationPtr = ^MKUserLocation;
{$endif}
{$ifdef CLASSES}
type
MKUserLocation = objcclass external (NSObject, MKAnnotationProtocol)
public
function isUpdating: ObjCBOOL; message 'isUpdating';
function location: CLLocation; message 'location';
function heading: CLHeading; message 'heading';
procedure setTitle(newValue: NSString); message 'setTitle:';
function title: NSString; message 'title';
procedure setSubtitle(newValue: NSString); message 'setSubtitle:';
function subtitle: NSString; message 'subtitle';
{ Adopted protocols }
function coordinate: CLLocationCoordinate2D; message 'coordinate';
procedure setCoordinate (newCoordinate: CLLocationCoordinate2D); message 'setCoordinate:'; { available in 10_9, 4_0 }
end;
{$endif}
|