blob: bf2c34877c6b81126230add419131486393ecbb5 (
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
|
{ Parsed from MapKit.framework MKMapSnapshotter.h }
{$ifdef TYPES}
type
MKMapSnapshotterPtr = ^MKMapSnapshotter;
{$endif}
{$ifdef TYPES}
type
MKMapSnapshotCompletionHandler = OpaqueCBlock;
{$endif}
{$ifdef CLASSES}
type
MKMapSnapshotter = objcclass external (NSObject)
public
function initWithOptions (options: MKMapSnapshotOptions): instancetype; message 'initWithOptions:'; { NS_DESIGNATED_INITIALIZER }
procedure startWithCompletionHandler (completionHandler: MKMapSnapshotCompletionHandler); message 'startWithCompletionHandler:';
procedure startWithQueue_completionHandler (queue: dispatch_queue_t; completionHandler: MKMapSnapshotCompletionHandler); message 'startWithQueue:completionHandler:';
procedure cancel; message 'cancel';
function isLoading: ObjCBOOL; message 'isLoading';
end;
{$endif}
|