blob: 5aabde350e2825ee715c30f27d5c7b0e8807431d (
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
|
{ Parsed from MapKit.framework MKShape.h }
{$ifdef TYPES}
type
MKShapePtr = ^MKShape;
{$endif}
{$ifdef CLASSES}
type
MKShape = objcclass external (NSObject, MKAnnotationProtocol)
public
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}
|