blob: 042b6275ff8d9ae2162b0bd537dce0bfb47fff6c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{ Parsed from CloudKit.framework CKRecord.h }
{$ifdef TYPES}
type
CKRecordPtr = ^CKRecord;
CKRecordValueProtocolPtr = ^CKRecordValueProtocol;
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
var
CKRecordTypeUserRecord: NSString { available in 10_10, 8_0 }; cvar; external;
{$endif}
{$ifdef PROTOCOLS}
type
CKRecordValueProtocol = objcprotocol external name 'CKRecordValue' (NSObjectProtocol)
end;
{$endif}
{$ifdef CLASSES}
type
CKRecord = objcclass external (NSObject, NSSecureCodingProtocol, NSCopyingProtocol)
public
function init: instancetype; message 'init';
function initWithRecordType (recordType: NSString): instancetype; message 'initWithRecordType:';
function initWithRecordType_recordID (recordType: NSString; recordID: CKRecordID): instancetype; message 'initWithRecordType:recordID:';
function initWithRecordType_zoneID (recordType: NSString; zoneID: CKRecordZoneID): instancetype; message 'initWithRecordType:zoneID:';
function recordType: NSString; message 'recordType';
function recordID: CKRecordID; message 'recordID';
function recordChangeTag: NSString; message 'recordChangeTag';
function creatorUserRecordID: CKRecordID; message 'creatorUserRecordID';
function creationDate: NSDate; message 'creationDate';
function lastModifiedUserRecordID: CKRecordID; message 'lastModifiedUserRecordID';
function modificationDate: NSDate; message 'modificationDate';
function objectForKey (key: NSString): id; message 'objectForKey:';
procedure setObject_forKey (object_: CKRecordValueProtocol; key: NSString); message 'setObject:forKey:';
function allKeys: NSArray; message 'allKeys';
function allTokens: NSArray; message 'allTokens';
function objectForKeyedSubscript (key: NSString): id; message 'objectForKeyedSubscript:';
procedure setObject_forKeyedSubscript (object_: CKRecordValueProtocol; key: NSString); message 'setObject:forKeyedSubscript:';
function changedKeys: NSArray; message 'changedKeys';
procedure encodeSystemFieldsWithCoder (coder: NSCoder); message 'encodeSystemFieldsWithCoder:';
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
end;
type
NSString_CKRecordValue = objccategory external name 'CKRecordValue' (NSString)
end;
type
NSNumber_CKRecordValue = objccategory external name 'CKRecordValue' (NSNumber)
end;
type
NSArray_CKRecordValue = objccategory external name 'CKRecordValue' (NSArray)
end;
type
NSDate_CKRecordValue = objccategory external name 'CKRecordValue' (NSDate)
end;
type
NSData_CKRecordValue = objccategory external name 'CKRecordValue' (NSData)
end;
type
CKReference_CKRecordValue = objccategory external name 'CKRecordValue' (CKReference)
end;
type
CKAsset_CKRecordValue = objccategory external name 'CKRecordValue' (CKAsset)
end;
type
CKRecordValue = objccategory external (CLLocation)
end;
{$endif}
|