MKAnnotation.inc 563 B

1234567891011121314151617181920
  1. { Parsed from MapKit.framework MKAnnotation.h }
  2. {$ifdef TYPES}
  3. type
  4. MKAnnotationProtocolPtr = ^MKAnnotationProtocol;
  5. {$endif}
  6. {$ifdef PROTOCOLS}
  7. type
  8. MKAnnotationProtocol = objcprotocol external name 'MKAnnotation' (NSObjectProtocol)
  9. function coordinate: CLLocationCoordinate2D; message 'coordinate';
  10. optional
  11. function title: NSString; message 'title';
  12. function subtitle: NSString; message 'subtitle';
  13. procedure setCoordinate (newCoordinate: CLLocationCoordinate2D); message 'setCoordinate:'; { available in 10_9, 4_0 }
  14. end;
  15. {$endif}