blob: d2f074318f6a7f671a89c7b52ffc888a733b4126 (
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 CloudKit.framework CKLocationSortDescriptor.h }
{$ifdef TYPES}
type
CKLocationSortDescriptorPtr = ^CKLocationSortDescriptor;
{$endif}
{$ifdef CLASSES}
type
CKLocationSortDescriptor = objcclass external (NSSortDescriptor, NSSecureCodingProtocol)
public
function init: instancetype; message 'init';
function initWithKey_relativeLocation (key: NSString; relativeLocation: CLLocation): instancetype; message 'initWithKey:relativeLocation:'; { NS_DESIGNATED_INITIALIZER }
function initWithCoder (aDecoder: NSCoder): instancetype; message 'initWithCoder:'; { NS_DESIGNATED_INITIALIZER }
function relativeLocation: CLLocation; message 'relativeLocation';
{ Adopted protocols }
procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
end;
{$endif}
|