blob: d99c34150a9fa0e2a2ad321e58d3d073bc5e323b (
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
|
{ Parsed from CloudKit.framework CKQuery.h }
{$ifdef TYPES}
type
CKQueryPtr = ^CKQuery;
{$endif}
{$ifdef CLASSES}
type
CKQuery = objcclass external (NSObject, NSSecureCodingProtocol, NSCopyingProtocol)
public
function init: instancetype; message 'init';
function initWithCoder (aDecoder: NSCoder): instancetype; message 'initWithCoder:'; { NS_DESIGNATED_INITIALIZER }
function initWithRecordType_predicate (recordType: NSString; predicate: NSPredicate): instancetype; message 'initWithRecordType:predicate:'; { NS_DESIGNATED_INITIALIZER }
function recordType: NSString; message 'recordType';
function predicate: NSPredicate; message 'predicate';
procedure setSortDescriptors(newValue: NSArray); message 'setSortDescriptors:';
function sortDescriptors: NSArray; message 'sortDescriptors';
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
end;
{$endif}
|