-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3267 lines (3249 loc) · 145 KB
/
index.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML Meta Tags -->
<title>Public Apple Frameworks</title>
<meta name="description"
content="View all public frameworks from Apple and filter based on platform and availability">
<meta name="keywords"
content="Apple, Frameworks, Technologies, List, Table, Availability, Minimum Platform Version">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Marco Eidinger">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Public Apple Frameworks">
<meta itemprop="description"
content="View all public frameworks from Apple and filter based on platform and availability">
<meta itemprop="image" content="">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://marcoeidinger.github.io/appleframeworks">
<meta property="og:type" content="website">
<meta property="og:title" content="Public Apple Frameworks">
<meta property="og:description"
content="View all public frameworks from Apple and filter based on platform and availability">
<meta property="og:image" content="">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Public Apple Frameworks">
<meta name="twitter:description"
content="View all public frameworks from Apple and filter based on platform and availability">
<meta name="twitter:image" content="">
<link rel="stylesheet" href="node_modules/bulma/css/bulma.min.css">
</head>
<body>
<script src="node_modules/tablefilter/dist/tablefilter/tablefilter.js"></script>
<div class="container content p-4">
<h1 class="title pt-4">Public Apple Frameworks</h1>
<p>View all public frameworks provided by Apple and check their platform availability. Use the built-in filters
or perform advanced searches from text-box filters with these <a
href="https://github.com/koalyptus/TableFilter/wiki/4.-Filter-operators" target="_blank">operators</a>.
</p>
<form class="navbar-form navbar-left" onsubmit="filter(event);">
<div class="form-group field has-addons">
<p class="control">
<span class="select">
<select id="slcColumns" name="slcColumns" class="form-control" onchange="filter();">
<option value="all">All frameworks</option>
<option value="beta">All Beta frameworks</option>
<option value="ios">iOS</option>
<option value="ios13+">iOS 13.0+</option>
<option value="ios-not-watch">iOS && !watchOS</option>
<option value="mac">macOS</option>
<option value="mac-not-ios">macOS && !iOS </option>
<option value="watchos">watchOS</option>
<option value="tvos">tvOS</option>
<option value="visionOS">visionOS</option>
</select>
</span>
</p>
<div class="control">
<button class="button is-link is-light" onclick="clearFilterAndSelectOptions();">Clear</button>
</div>
</div>
</form>
<p class="content"></p>
<table class="frameworks">
<thead>
<tr>
<th>Framework</th>
<th>iOS</th>
<th>macOS</th>
<th>watchOS</th>
<th>tvOS</th>
<th>visionOS</th>
<th>macCatalyst</th>
<th>iPadOS</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://developer.apple.com/documentation/accelerate"
title="Make large-scale mathematical computations and image calculations, optimized for high performance and low energy consumption."
target="_blank">Accelerate</a></td>
<td>4.0</td>
<td>10.3</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Accessibility"
title="Make your apps accessible to everyone who uses Apple devices."
target="_blank">Accessibility</a></td>
<td>14.0</td>
<td>11.0</td>
<td>7.0</td>
<td>14.0</td>
<td>1.0</td>
<td>14.0</td>
<td>14.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AccessorySetupKit"
title="Enable privacy-preserving discovery and configuration of accessories."
target="_blank">AccessorySetupKit</a></td>
<td>18.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>18.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Accounts"
title="Help users access and manage their external accounts from within your app, without requiring them to enter login credentials."
target="_blank">Accounts <span class="tag is-warning is-light"> Deprecated</span></a></td>
<td>5.0</td>
<td>10.8</td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td>5.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/ActivityKit"
title="Share live updates from your app as Live Activities in the Dynamic Island, on the Lock Screen, and on the Smart Stack in watchOS."
target="_blank">ActivityKit</a></td>
<td>16.1</td>
<td></td>
<td>11.0</td>
<td></td>
<td></td>
<td>16.1</td>
<td>17.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AdAttributionKit"
title="Present, process, and register postbacks for in-app ads in the App Store and alternative app marketplaces."
target="_blank">AdAttributionKit</a></td>
<td>17.4</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>17.4</td>
<td>17.4</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/addressbook"
title="Access the centralized database for storing users’ contacts." target="_blank">Address
Book <span class="tag is-warning is-light"> Deprecated</span></a></td>
<td>2.0</td>
<td>10.2</td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AddressBookUI"
title="Access users’ contacts and display them in a graphical interface."
target="_blank">Address Book UI <span class="tag is-warning is-light"> Deprecated</span></a>
</td>
<td>2.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AdServices"
title="Attribute app-download campaigns that originate from the App Store, Apple News, or"
target="_blank">AdServices</a></td>
<td>14.3</td>
<td>11.1</td>
<td></td>
<td></td>
<td>1.0</td>
<td>14.3</td>
<td>14.3</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AdSupport"
title="Provide apps with access to an advertising identifier." target="_blank">AdSupport</a>
</td>
<td>6.0</td>
<td>10.14</td>
<td></td>
<td>9.0</td>
<td></td>
<td>13.0</td>
<td>6.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AGL"
title="Create and manage OpenGL rendering contexts for use in macOS, and perform operations on drawable objects."
target="_blank">AGL</a></td>
<td></td>
<td>10.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AppClip"
title="Provide people a shortcut to selected content and features of your app."
target="_blank">App Clips</a></td>
<td>14.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>14.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AppIntents"
title="Make your app’s content and actions discoverable with system experiences like Spotlight, widgets, and enhanced action capabilities of Siri, powered by Apple Intelligence."
target="_blank">App Intents</a></td>
<td>16.0</td>
<td>13.0</td>
<td>9.0</td>
<td>16.0</td>
<td>1.0</td>
<td>16.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AppTrackingTransparency"
title="Request user authorization to access app-related data for tracking the user or the"
target="_blank">App Tracking Transparency</a></td>
<td>14.0</td>
<td>11.0</td>
<td></td>
<td>14.0</td>
<td>1.0</td>
<td>14.0</td>
<td>14.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/appkit"
title="Construct and manage a graphical, event-driven user interface for your macOS app."
target="_blank">AppKit</a></td>
<td></td>
<td>10.0</td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/applearchive"
title="Perform multithreaded lossless compression of directories, files, and data."
target="_blank">Apple Archive</a></td>
<td>14.0</td>
<td>11.0</td>
<td>7.0</td>
<td>14.0</td>
<td>1.0</td>
<td>14.0</td>
<td>14.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CryptoKit"
title="Perform cryptographic operations securely and efficiently." target="_blank">Apple
CryptoKit</a></td>
<td>13.0</td>
<td>10.15</td>
<td>8.0</td>
<td>15.0</td>
<td>1.0</td>
<td>15.0</td>
<td>13.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/applicationservices"
title="Perform common application tasks." target="_blank">Application Services</a></td>
<td></td>
<td>10.0</td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/arkit"
title="Integrate hardware sensing features to produce augmented reality apps and games. "
target="_blank">ARKit</a></td>
<td>11.0</td>
<td></td>
<td></td>
<td></td>
<td>1.0</td>
<td>14.0</td>
<td>11.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AssetsLibrary"
title="Access the assets in a user’s media library." target="_blank">Assets Library <span
class="tag is-warning is-light"> Deprecated</span></a></td>
<td>4.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Assignables"
title="A framework that contain wrappers to a PDF to allow creation"
target="_blank">Assignables</a></td>
<td>15.4</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>15.4</td>
<td>15.4</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/audiotoolbox"
title="Record or play audio, convert formats, parse audio streams, and configure your audio session."
target="_blank">Audio Toolbox</a></td>
<td>2.0</td>
<td>10.0</td>
<td></td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AudioUnit"
title="Add sophisticated audio manipulation and processing capabilities to your app."
target="_blank">Audio Unit</a></td>
<td>2.0</td>
<td>10.0</td>
<td></td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AuthenticationServices"
title="Make it easy for users to log into apps and services." target="_blank">Authentication
Services</a></td>
<td>12.0</td>
<td>10.15</td>
<td>6.0</td>
<td>13.0</td>
<td>1.0</td>
<td>13.0</td>
<td>12.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AutomaticAssessmentConfiguration"
title="Enter single-app mode and prevent students from accessing specific system features while taking an exam."
target="_blank">Automatic Assessment Configuration</a></td>
<td>13.4</td>
<td>10.15.4</td>
<td></td>
<td></td>
<td></td>
<td>13.4</td>
<td>13.4</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Automator"
title="Develop actions that the Automator app can load and run. View, edit, and run Automator workflows in your app."
target="_blank">Automator</a></td>
<td></td>
<td>10.4</td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/avfaudio"
title="Play, record, and process audio; configure your app’s system audio behavior."
target="_blank">AVFAudio</a></td>
<td>14.5</td>
<td>11.3</td>
<td>9.0</td>
<td>14.5</td>
<td>1.0</td>
<td>14.5</td>
<td>14.5</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/avfoundation"
title="Work with audiovisual assets, control device cameras, process audio, and configure system audio interactions."
target="_blank">AVFoundation</a></td>
<td>2.2</td>
<td>10.7</td>
<td>3.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.2</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AVKit"
title="Create user interfaces for media playback, complete with transport controls, chapter navigation, picture-in-picture support, and display of subtitles and closed captions."
target="_blank">AVKit</a></td>
<td>8.0</td>
<td>10.9</td>
<td>9.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>8.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/AVRouting"
title="Display custom destinations to stream media in the system route picker."
target="_blank">AVRouting</a></td>
<td>16.0</td>
<td>13.0</td>
<td></td>
<td></td>
<td>1.0</td>
<td>16.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/BackgroundAssets"
title="Schedule background downloads of large assets after app installation, when the app updates, and periodically while the app remains on-device."
target="_blank">Background Assets</a></td>
<td>16.0</td>
<td>13.0</td>
<td></td>
<td></td>
<td>1.0</td>
<td>16.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/BackgroundTasks"
title="Request the system to launch your app in the background to run tasks."
target="_blank">Background Tasks</a></td>
<td>13.0</td>
<td></td>
<td></td>
<td>13.0</td>
<td>1.0</td>
<td>13.0</td>
<td>13.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/BrowserEngineCore"
title="Integrate an alternative browser engine into your web browser app."
target="_blank">BrowserEngineCore</a></td>
<td>17.4</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>18.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/BrowserEngineKit"
title="Create a browser that renders content using an alternative browser engine."
target="_blank">BrowserEngineKit</a></td>
<td>17.4</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>18.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/bundleresources"
title="Resources located in an app, framework, or plugin bundle." target="_blank">Bundle
Resources</a></td>
<td>2.0</td>
<td>10.0</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td></td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CallKit"
title="Display the system-calling UI for your app’s VoIP services, and coordinate your calling services with other apps and the system."
target="_blank">CallKit</a></td>
<td>10.0</td>
<td>13.0</td>
<td>9.0</td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>10.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CarKey"
title="Access the remote keyless features of configured vehicles in the Wallet app."
target="_blank">CarKey</a></td>
<td>16.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>16.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CarPlay"
title="Integrate CarPlay in apps related to audio, communication, navigation, parking, EV charging, food ordering, and more."
target="_blank">CarPlay</a></td>
<td>12.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>12.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CFNetwork"
title="Access network services and handle changes in network configurations. Build on abstractions of network protocols to simplify tasks such as working with BSD sockets, administering HTTP and FTP servers, and managing Bonjour services."
target="_blank">CFNetwork</a></td>
<td>2.0</td>
<td>10.8</td>
<td></td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/cinematic"
title="Integrate playback and editing of assets captured in Cinematic mode into your app."
target="_blank">Cinematic</a></td>
<td>17.0</td>
<td>14.0</td>
<td></td>
<td>17.0</td>
<td></td>
<td>17.0</td>
<td>17.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/ClassKit"
title="Enable teachers to assign activities from your app’s content and to view student progress."
target="_blank">ClassKit</a></td>
<td>11.4</td>
<td>11.0</td>
<td></td>
<td></td>
<td>1.0</td>
<td>14.0</td>
<td>11.4</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/clockkit"
title="Display app-specific data on the clock face." target="_blank">ClockKit</a></td>
<td>14.0</td>
<td></td>
<td>10.0</td>
<td></td>
<td></td>
<td>14.0</td>
<td>14.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/cloudkit"
title="Store structured app and user data in iCloud containers that all users of your app can share."
target="_blank">CloudKit</a></td>
<td>8.0</td>
<td>10.10</td>
<td>3.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>8.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Collaboration"
title="Find and access identities, that is, users and groups. Display the Identity Picker, which lets users create and select identities."
target="_blank">Collaboration</a></td>
<td></td>
<td>10.5</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/ColorSync"
title="Reproduce colors accurately across a range of input, output, and display devices."
target="_blank">ColorSync</a></td>
<td>16.0</td>
<td>10.13</td>
<td>9.0</td>
<td>16.0</td>
<td>1.0</td>
<td>13.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Combine"
title="Customize handling of asynchronous events by combining event-processing operators."
target="_blank">Combine</a></td>
<td>13.0</td>
<td>10.15</td>
<td>6.0</td>
<td>13.0</td>
<td>1.0</td>
<td>13.0</td>
<td>13.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/compositorservices"
title="Take control of the drawing environment and render your own content using Metal."
target="_blank">Compositor Services</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>1.0</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/compression"
title="Leverage common compression algorithms for lossless data compression."
target="_blank">Compression</a></td>
<td>9.0</td>
<td>10.11</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>9.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/ContactProvider"
title="Provide contacts managed by your app to the system-wide Contacts ecosystem."
target="_blank">ContactProvider</a></td>
<td>18.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>18.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/Contacts"
title="Access the user’s contacts, and format and localize contact information."
target="_blank">Contacts</a></td>
<td>9.0</td>
<td>10.11</td>
<td>2.0</td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>9.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/ContactsUI"
title="Provide an interface that allows people to display information about their"
target="_blank">Contacts UI</a></td>
<td>9.0</td>
<td>10.11</td>
<td></td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>9.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/quartzcore"
title="Render, compose, and animate visual elements." target="_blank">Core Animation</a>
</td>
<td>2.0</td>
<td>10.3</td>
<td>11.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coreaudio"
title="Use the Core Audio framework to interact with device’s audio hardware."
target="_blank">Core Audio</a></td>
<td>2.0</td>
<td>10.0</td>
<td>3.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreAudioTypes"
title="Use specialized data types to interact with audio streams, complex buffers, and audiovisual timestamps."
target="_blank">Core Audio Types</a></td>
<td>13.0</td>
<td>10.15</td>
<td>6.0</td>
<td>13.0</td>
<td>1.0</td>
<td>13.0</td>
<td>13.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreBluetooth"
title="Communicate with Bluetooth low energy and BR/EDR (“Classic”) Devices."
target="_blank">Core Bluetooth</a></td>
<td>5.0</td>
<td>10.10</td>
<td>4.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>5.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coredata"
title="Persist or cache data on a single device, or sync data to multiple devices with CloudKit."
target="_blank">Core Data</a></td>
<td>3.0</td>
<td>10.4</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>3.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/corefoundation"
title="Access low-level functions, primitive data types, and various collection types that are bridged seamlessly with the Foundation framework."
target="_blank">Core Foundation</a></td>
<td>2.0</td>
<td>10.0</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coregraphics"
title="Harness the power of Quartz technology to perform lightweight 2D rendering with high-fidelity output. Handle path-based drawing, antialiased rendering, gradients, images, color management, PDF documents, and more."
target="_blank">Core Graphics</a></td>
<td>2.0</td>
<td>10.8</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreHaptics"
title="Compose and play haptic patterns to customize your iOS app’s haptic feedback."
target="_blank">Core Haptics</a></td>
<td>13.0</td>
<td></td>
<td></td>
<td>14.0</td>
<td>1.0</td>
<td>13.0</td>
<td>13.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreHID"
title="Interact with keyboards, mice, and other human interface devices."
target="_blank">Core HID</a></td>
<td></td>
<td>15.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coreimage"
title="Use built-in or custom filters to process still and video images."
target="_blank">Core Image</a></td>
<td>5.0</td>
<td>10.11</td>
<td></td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>5.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreLocation"
title="Obtain the geographic location and orientation of a device." target="_blank">Core
Location</a></td>
<td>2.0</td>
<td>10.6</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>2.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coremedia"
title="Represent time-based audio-visual assets with essential data types."
target="_blank">Core Media</a></td>
<td>4.0</td>
<td>10.7</td>
<td>6.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreMediaIO"
title="Securely support custom camera devices in macOS." target="_blank">Core Media I/O</a>
</td>
<td></td>
<td>10.7</td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coremidi"
title="Communicate with MIDI devices such as hardware keyboards and synthesizers."
target="_blank">Core MIDI</a></td>
<td>4.2</td>
<td>10.0</td>
<td>8.0</td>
<td>15.0</td>
<td>1.0</td>
<td>13.0</td>
<td>4.2</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreML"
title="Integrate machine learning models into your app." target="_blank">Core ML</a></td>
<td>11.0</td>
<td>10.13</td>
<td>4.0</td>
<td>11.0</td>
<td>1.0</td>
<td>13.0</td>
<td>11.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coremotion"
title="Process accelerometer, gyroscope, pedometer, and environment-related events."
target="_blank">Core Motion</a></td>
<td>4.0</td>
<td>10.15</td>
<td>2.0</td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/corenfc"
title="Detect NFC tags, read messages that contain NDEF data, and save data to writable tags."
target="_blank">Core NFC</a></td>
<td>11.0</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td>11.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coreservices"
title="Access and manage key operating system services, such as launch and identity services."
target="_blank">Core Services</a></td>
<td>12.0</td>
<td>10.0</td>
<td>5.0</td>
<td>12.0</td>
<td>1.0</td>
<td>13.0</td>
<td>12.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreSpotlight"
title="Add search capabilities to your app, and index your content so" target="_blank">Core
Spotlight</a></td>
<td>9.0</td>
<td>10.13</td>
<td></td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>9.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coretelephony"
title="Access information about a user’s cellular service provider, such as its unique identifier and whether the carrier allows VoIP."
target="_blank">Core Telephony</a></td>
<td>4.0</td>
<td>10.10</td>
<td></td>
<td></td>
<td></td>
<td>14.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coretext"
title="Create text layouts, optimize font handling, and access font metrics and glyph data."
target="_blank">Core Text</a></td>
<td>3.2</td>
<td>10.8</td>
<td>2.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>3.2</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreTransferable"
title="Declare a transfer representation for your model types" target="_blank">Core
Transferable</a></td>
<td>16.0</td>
<td>13.0</td>
<td>9.0</td>
<td>16.0</td>
<td>1.0</td>
<td>16.0</td>
<td>16.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreVideo"
title="Process digital video, including manipulation of individual frames, using a pipeline-based API and support for both Metal and OpenGL."
target="_blank">Core Video</a></td>
<td>4.0</td>
<td>10.4</td>
<td>4.0</td>
<td>9.0</td>
<td>1.0</td>
<td>13.0</td>
<td>4.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreWLAN"
title="Query AirPort interfaces and choose wireless networks." target="_blank">Core WLAN</a>
</td>
<td></td>
<td>10.6</td>
<td></td>
<td></td>
<td></td>
<td>13.0</td>
<td></td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/coreaudiokit"
title="Add user interfaces to audio units." target="_blank">CoreAudioKit</a></td>
<td>8.0</td>
<td>10.4</td>
<td></td>
<td></td>
<td>1.0</td>
<td>13.0</td>
<td>8.0</td>
</tr>
<tr>
<td><a href="https://developer.apple.com/documentation/CoreLocationUI"
title="Streamline access to users’ location data through a standard, secure UI."
target="_blank">CoreLocationUI</a></td>
<td>15.0</td>