MKShape.inc 669 B

123456789101112131415161718192021222324
  1. { Parsed from MapKit.framework MKShape.h }
  2. {$ifdef TYPES}
  3. type
  4. MKShapePtr = ^MKShape;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. MKShape = objcclass external (NSObject, MKAnnotationProtocol)
  9. public
  10. procedure setTitle(newValue: NSString); message 'setTitle:';
  11. function title: NSString; message 'title';
  12. procedure setSubtitle(newValue: NSString); message 'setSubtitle:';
  13. function subtitle: NSString; message 'subtitle';
  14. { Adopted protocols }
  15. function coordinate: CLLocationCoordinate2D; message 'coordinate';
  16. procedure setCoordinate (newCoordinate: CLLocationCoordinate2D); message 'setCoordinate:'; { available in 10_9, 4_0 }
  17. end;
  18. {$endif}