blob: 720836ac8d79df79aeac8d818358c4095319fcb4 (
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
28
29
30
31
|
{ Parsed from MapKit.framework MKPinAnnotationView.h }
{$ifdef TYPES}
type
MKPinAnnotationViewPtr = ^MKPinAnnotationView;
{$endif}
{$ifdef TYPES}
type
MKPinAnnotationColor = NSUInteger;
MKPinAnnotationColorPtr = ^MKPinAnnotationColor;
const
MKPinAnnotationColorRed = 0;
MKPinAnnotationColorGreen = 1;
MKPinAnnotationColorPurple = 2;
{$endif}
{$ifdef CLASSES}
type
MKPinAnnotationView = objcclass external (MKAnnotationView)
public
procedure setPinColor(newValue: MKPinAnnotationColor); message 'setPinColor:';
function pinColor: MKPinAnnotationColor; message 'pinColor';
procedure setAnimatesDrop(newValue: ObjCBOOL); message 'setAnimatesDrop:';
function animatesDrop: ObjCBOOL; message 'animatesDrop';
end;
{$endif}
|