forked from matteocrippa/awesome-swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
contents.json
6336 lines (6334 loc) · 257 KB
/
contents.json
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
{
"title": "Awesome Swift",
"header": "# Awesome Swift\n \n<!-- \n\nPLEASE DO NOT UPDATE THIS FILE, UPDATE CONTENTS.JSON INSTEAD. THANK YOU :-)\n\n -->\n\n",
"header_contributing": "Please take a quick look at the [contribution guidelines](.github/CONTRIBUTING.md) first. If you see a package or project here that is no longer maintained or is not a good fit, please submit a pull request to improve this file. Thank you to all [contributors](https://github.com/matteocrippa/awesome-swift/graphs/contributors); you rock!!",
"ios_app_link": "https://itunes.apple.com/us/app/awesome-for-swift-cheatsheet/id1078115427",
"categories": [{
"title": "Guides",
"id": "guides",
"description": "An awesome list of Swift related guides."
}, {
"title": "Official Guides",
"id": "official-guides",
"parent": "guides"
}, {
"title": "SDK",
"id": "sdk",
"parent": "libs"
}, {
"title": "Third party Guides",
"id": "third-party-guides",
"parent": "guides"
}, {
"title": "Newsletter",
"id": "newsletter",
"parent": "guides"
}, {
"title": "Calendar",
"id": "calendar",
"parent": "ui"
}, {
"title": "Cards",
"id": "cards",
"parent": "ui"
}, {
"title": "Style Guides",
"id": "style-guides",
"parent": "guides"
}, {
"title": "Boilerplates",
"id": "boilerplates"
}, {
"title": "REPL",
"id": "repl"
}, {
"title": "Cache",
"id": "cache",
"parent": "libs"
}, {
"title": "Editor Support",
"id": "editor-support",
"description": "Support for your favorite editors."
}, {
"title": "Emacs",
"id": "emacs",
"parent": "editor-support"
}, {
"title": "Vim",
"id": "vim",
"parent": "editor-support"
}, {
"title": "Google Colaboratory",
"id": "google-colaboratory",
"parent": "editor-support"
}, {
"title": "Benchmark",
"id": "benchmark"
}, {
"title": "Converters",
"id": "converters"
}, {
"title": "Other Awesome Lists",
"id": "other-awesome-lists",
"description": "Check out apps on these projects:"
}, {
"title": "Dependency Managers",
"id": "dependency-managers",
"description": "Dependency manager software for Swift."
}, {
"title": "Patterns",
"id": "patterns"
}, {
"title": "Misc",
"id": "misc",
"description": "Miscellaneous Swift related projects"
}, {
"title": "Libs",
"id": "libs",
"description": "Here you can find a list of snippets and libs for your Swift projects."
}, {
"title": "Accessibility",
"id": "accessibility",
"parent": "libs"
}, {
"title": "Analytics",
"id": "analytics",
"parent": "libs",
"description": "Analytics related libraries to easily track your app usage"
}, {
"title": "AI",
"id": "ai",
"parent": "libs",
"description": "Libs for AI based projects (Machine Learning, Neural Networks etc)."
}, {
"title": "Augmented Reality",
"id": "augmented-reality",
"parent": "libs"
}, {
"title": "Algorithm",
"id": "algorithm",
"parent": "libs"
}, {
"title": "Currency",
"id": "currency",
"parent": "libs"
}, {
"title": "Animation",
"id": "animation",
"parent": "libs",
"description": "Libs to help with animation"
}, {
"title": "App Routing",
"id": "app-routing",
"parent": "libs",
"description": "Internal app routing systems."
}, {
"title": "App Store",
"id": "app-store",
"parent": "libs",
"description": "Libs to help with apple app store, in app purchases and receipt validation."
}, {
"title": "Audio",
"id": "audio",
"parent": "libs",
"description": "Libs to work with audio"
}, {
"title": "Authentication",
"id": "authentication",
"parent": "libs",
"description": "Easy way to manage auth in your apps."
}, {
"title": "API",
"id": "api",
"parent": "libs",
"description": "Quick libs to get access to third party API services"
}, {
"title": "Natural Language Processing",
"id": "natural-language-processing",
"parent": "libs"
}, {
"title": "Bots",
"id": "bots",
"parent": "libs",
"description": "Libs to build bot"
}, {
"title": "Bluetooth",
"id": "bluetooth",
"parent": "hardware",
"description": "Wrappers around CoreBluetooth"
}, {
"title": "Camera",
"id": "camera",
"parent": "hardware",
"description": "Awesome camera libs"
}, {
"title": "Chat",
"id": "chat",
"parent": "libs",
"description": "Libs to get access to build chat app"
}, {
"title": "Colors",
"id": "colors",
"parent": "libs",
"description": "Interesting snippets related to color management and utility."
}, {
"title": "Command Line",
"id": "command-line",
"parent": "libs",
"description": "Create command line applications."
}, {
"title": "Concurrency",
"id": "concurrency",
"parent": "libs",
"description": "Easier ways to work with concurrency."
}, {
"title": "Data Management",
"id": "data-management",
"parent": "libs"
}, {
"title": "Device",
"id": "device",
"parent": "libs",
"description": "A collection of libs to recognize your device."
}, {
"title": "CBOR",
"id": "cbor",
"parent": "data-management",
"description": "Concise Binary Object Representation."
}, {
"title": "Core Data",
"id": "core-data",
"parent": "data-management",
"description": "No more pain with Core Data, here are some interesting libs to handle data management."
}, {
"title": "CSV",
"id": "csv",
"parent": "data-management",
"description": "Helpful libraries to parse from and serialize to comma-separated value representations."
}, {
"title": "Multi Database",
"id": "multi-database",
"parent": "data-management",
"description": "Data management layers that involve multiple sources."
}, {
"title": "PDF",
"id": "pdf",
"parent": "libs"
}, {
"title": "Realm",
"id": "realm",
"parent": "data-management"
}, {
"title": "Firebase",
"id": "firebase",
"parent": "data-management"
},{
"title": "Files",
"id": "files",
"parent": "libs"
}, {
"title": "JSON",
"id": "json",
"parent": "data-management",
"description": "Struggling using json data? Here are some interesting ways to handle it."
}, {
"title": "TOML",
"id": "toml",
"parent": "data-management",
"description": "Tom's Obvious, Minimal Language."
}, {
"title": "Key Value Store",
"id": "key-value-store",
"parent": "data-management"
}, {
"title": "MongoDB",
"id": "mongodb",
"parent": "data-management"
}, {
"title": "ORM",
"id": "orm",
"parent": "data-management"
}, {
"title": "SQLite",
"id": "sqlite",
"parent": "data-management",
"description": "Are you interested in storing your app data using SQLite? Here are some interesting resources."
}, {
"title": "SQL drivers",
"id": "sql-drivers",
"parent": "data-management"
}, {
"title": "XML",
"id": "xml",
"parent": "data-management",
"description": "If you prefer to manage XML data formatted entries, here are some helpful libs"
}, {
"title": "YAML",
"id": "yaml",
"parent": "data-management"
}, {
"title": "ZIP",
"id": "zip",
"parent": "data-management"
}, {
"title": "Other Data",
"id": "other-data",
"parent": "data-management",
"description": "Other ways to persist data"
}, {
"title": "Date",
"id": "date",
"parent": "libs",
"description": "Handle data formatting easily."
}, {
"title": "Dependency Injection",
"id": "dependency-injection",
"parent": "libs",
"description": "Dependency injection libs"
}, {
"title": "Documentation",
"id": "documentation",
"parent": "libs",
"description": "Generate documentation for Swift code"
}, {
"title": "Embedded Systems",
"id": "embedded-systems",
"parent": "libs",
"description": "Build your embedded Linux projects on a RaspberryPi, BeagleBone, C.H.I.P. and other boards."
}, {
"title": "Peripherals",
"id": "peripherals",
"parent": "embedded-systems",
"description": "Interact with specific external peripherals."
}, {
"title": "Events",
"id": "events",
"parent": "libs",
"description": "Alternatives to NSNotificationCenter, Key-Value-Observation, or delegation."
}, {
"title": "Fonts",
"id": "fonts",
"parent": "libs",
"description": "A collection of font related snippets."
}, {
"title": "Games",
"id": "games",
"parent": "libs"
}, {
"title": "Gesture",
"id": "gesture",
"parent": "libs"
}, {
"title": "Hardware",
"id": "hardware",
"parent": "libs",
"description": "A category dedicated to hardware related libs"
}, {
"title": "Haptic Feedback",
"id": "haptic-feedback",
"parent": "hardware",
"description": "Libraries that involve the use of Haptic Feedback"
}, {
"title": "iBeacon",
"id": "ibeacon",
"parent": "hardware",
"description": "Interested in using iBeacon in your Swift project? Here some interesting resources."
}, {
"title": "Images",
"id": "images",
"parent": "libs",
"description": "An interesting list of image related libs.."
}, {
"title": "Keyboard",
"id": "keyboard",
"parent": "libs",
"description": "Do you want to create your own customized keyboard? Here are some interesting resources"
}, {
"title": "Key Value Coding",
"id": "key-value-coding",
"parent": "libs",
"description": "Libraries for key-value coding"
}, {
"title": "Kit",
"id": "kit",
"parent": "libs",
"description": "Libraries for coding with a simplified API"
}, {
"title": "Layout",
"id": "layout",
"parent": "libs",
"description": "Libs to help you with layout."
}, {
"title": "Auto Layout",
"id": "auto-layout",
"parent": "layout",
"description": "Bored of using storyboard? Give a try to declarative auto layout libs."
}, {
"title": "Localization",
"id": "localization",
"parent": "libs",
"description": "Frameworks that helps with localizing your app"
}, {
"title": "Logging",
"id": "logging",
"parent": "libs",
"description": "Utilities for writing to and reading from the device log"
}, {
"title": "Chart",
"id": "chart",
"parent": "libs"
}, {
"title": "Maps",
"id": "maps",
"parent": "libs"
}, {
"title": "Location",
"id": "location",
"parent": "libs"
}, {
"title": "Barcode",
"id": "barcode",
"parent": "camera",
"description": "Barcode, QR-code, other code readers"
}, {
"title": "Math",
"id": "math",
"parent": "libs"
}, {
"title": "Network",
"id": "network",
"parent": "libs",
"description": "A list of libs that allow you to decrease the amount of time spent dealing with http requests."
}, {
"title": "HTML",
"id": "html",
"parent": "network",
"description": "Need to manipulate contents from html easily?"
}, {
"title": "Messaging Protocol",
"id": "messaging-protocol",
"parent": "network"
}, {
"title": "Socket",
"id": "socket",
"parent": "network"
}, {
"title": "Webserver",
"id": "webserver",
"parent": "network",
"description": "Would you like host a webserver in your device? Here you can find how to do it."
}, {
"title": "OCR",
"id": "ocr",
"parent": "libs"
}, {
"title": "Optimization",
"id": "optimization",
"parent": "libs"
}, {
"title": "Quality",
"id": "quality",
"parent": "libs"
}, {
"title": "Security",
"id": "security",
"parent": "libs"
}, {
"title": "Cryptography",
"id": "cryptography",
"parent": "security",
"description": "Deal with cryptography method easily"
}, {
"title": "Keychain",
"id": "keychain",
"parent": "security"
}, {
"title": "Sensors",
"id": "sensors",
"parent": "hardware",
"description": "Manage your device sensors in a faster and easier way"
}, {
"title": "Styling",
"id": "styling",
"parent": "libs"
}, {
"title": "System",
"id": "system",
"parent": "libs"
}, {
"title": "Testing",
"id": "testing",
"parent": "libs",
"description": "A collection of testing frameworks."
}, {
"title": "Mock",
"id": "mock",
"parent": "testing"
}, {
"title": "Text",
"id": "text",
"parent": "libs",
"description": "A collection of text projects."
}, {
"title": "Validation",
"id": "validation",
"parent": "libs",
"description": "A collection of validation libs."
}, {
"title": "Phone Numbers",
"id": "phone-numbers",
"parent": "validation",
"description": "Libs to manage phone numbers."
}, {
"title": "Thread",
"id": "thread",
"parent": "libs",
"description": "Threading, task-based or asynchronous programming, Grand Central Dispatch (GCD) wrapper"
}, {
"title": "UI",
"id": "ui",
"parent": "libs",
"description": "A collection of pre-packaged transitions & cool ui stuffs."
}, {
"title": "3D Touch",
"id": "3d-touch",
"parent": "hardware",
"description": "Easy handle new 3D Touch / Force Touch feature thanks to these libs."
}, {
"title": "Alert",
"id": "alert",
"parent": "ui",
"description": "Libs to display alert, action sheet, notification, popup."
}, {
"title": "Blur",
"id": "blur",
"parent": "ui"
}, {
"title": "Button",
"id": "button",
"parent": "ui"
}, {
"title": "Tab",
"id": "tab",
"parent": "ui"
}, {
"title": "TextField",
"id": "textfield",
"parent": "ui"
}, {
"title": "Form",
"id": "form",
"parent": "ui"
}, {
"title": "Label",
"id": "label",
"parent": "ui"
}, {
"title": "Switch",
"id": "switch",
"parent": "ui"
}, {
"title": "Walkthrough",
"id": "walkthrough",
"parent": "ui"
}, {
"title": "HUD",
"id": "hud",
"parent": "ui"
}, {
"title": "Menu",
"id": "menu",
"parent": "ui"
}, {
"title": "Payment",
"id": "payment",
"parent": "ui"
}, {
"title": "Permissions",
"id": "permissions",
"parent": "ui"
}, {
"title": "StackView",
"id": "stackview",
"parent": "ui"
}, {
"title": "Transition",
"id": "transition",
"parent": "ui"
}, {
"title": "UICollectionView",
"id": "uicollectionview",
"parent": "ui"
}, {
"title": "UITableView",
"id": "uitableview",
"parent": "ui"
}, {
"title": "Template",
"id": "template",
"parent": "ui"
}, {
"title": "3D",
"id": "ui-3d",
"parent": "ui"
}, {
"title": "Utility",
"id": "utility",
"parent": "libs",
"description": "Some interesting utilities to help you in your projects"
}, {
"title": "Version Manager",
"id": "version-manager",
"parent": "libs"
}, {
"title": "Video",
"id": "video",
"parent": "libs"
}, {
"title": "Streaming",
"id": "streaming",
"parent": "libs"
}, {
"title": "Pagination",
"id": "pagination",
"parent": "ui"
}, {
"title": "Email",
"id": "email",
"parent": "libs"
}, {
"title": "Scripting",
"id": "scripting",
"parent": "libs"
}, {
"title": "Game Engine",
"id": "game-engine",
"parent": "libs"
}, {
"title": "2D",
"id": "game-engine-2d",
"parent": "game-engine"
}, {
"title": "Serverless",
"id": "serverless"
}, {
"title": "GraphQL",
"id": "graphql",
"parent": "data-management"
}, {
"title": "SOAP",
"id": "soap",
"parent": "network"
}, {
"title": "SVG",
"id": "svg",
"parent": "libs"
}],
"projects": [
{
"title": "SwiftAudioPlayer",
"category": "audio",
"description": "Simple audio player for iOS that streams and performs realtime audio manipulations with AVAudioEngine.",
"homepage": "https://github.com/tanhakabir/SwiftAudioPlayer"
}, {
"title": "ModelAssistant",
"category": "multi-database",
"description": "Elegant library to manage the interactions between view and model.",
"homepage": "https://github.com/ssamadgh/ModelAssistant",
"tags": ["swift", "uitableview", "uicollectionview", "ios"]
}, {
"title": "Cards XI",
"category": "transition",
"description": "Awesome iOS 11 AppStore's Card Views.",
"homepage": "https://github.com/PaoloCuscela/Cards"
}, {
"title": "Apple eBook",
"category": "official-guides",
"description": "Official Apple eBook for Swift beginners.",
"homepage": "https://books.apple.com/us/book/the-swift-programming-language-swift-5-6/id881256329"
}, {
"title": "API Design Guidelines",
"category": "official-guides",
"description": "Official Swift API design guidelines.",
"homepage": "https://www.swift.org/documentation/api-design-guidelines/"
}, {
"title": "Introducing SwiftUI",
"category": "official-guides",
"description": "Official SwiftUI tutorial with 4+ hours of content and interactive tutorials.",
"homepage": "https://developer.apple.com/tutorials/swiftui"
}, {
"title": "Swift Education",
"category": "third-party-guides",
"description": "A community of educators sharing materials for teaching Swift and app development.",
"homepage": "https://github.com/swifteducation"
}, {
"title": "30 Days of Swift",
"category": "third-party-guides",
"description": "A cool 30 days tutorial.",
"homepage": "https://github.com/allenwong/30DaysofSwift"
}, {
"title": "Awesome Swift Education",
"category": "third-party-guides",
"description": "An organized list of essential Swift Language Topics.",
"homepage": "https://github.com/hsavit1/Awesome-Swift-Education"
}, {
"title": "Developing iOS Apps with Swift",
"category": "third-party-guides",
"description": "Stanford course by Paul Hegarty.",
"homepage": "https://podcasts.apple.com/us/podcast/developing-ios-11-apps-with-swift/id1315130780"
}, {
"title": "Hacking With Swift",
"category": "third-party-guides",
"description": "Complete training course that teaches app development through 30 hands-on projects, for free.",
"homepage": "https://www.hackingwithswift.com"
}, {
"title": "The Swift Web Developer",
"category": "third-party-guides",
"description": "A publication for Swift Web Developers.",
"homepage": "https://theswiftwebdeveloper.com"
}, {
"title": "SwiftDoc",
"category": "third-party-guides",
"description": "Auto-generated documentation.",
"homepage": "https://swiftdoc.org/"
}, {
"title": "SwiftGuide CN",
"category": "third-party-guides",
"description": "A Chinese written guide.",
"homepage": "https://github.com/ipader/SwiftGuide"
}, {
"title": "Ray Wenderlich Tutorials, Videos, Podcasts and books",
"category": "third-party-guides",
"description": "High quality programming tutorials.",
"homepage": "https://www.raywenderlich.com"
}, {
"title": "Raywenderlich",
"category": "style-guides",
"description": "Raywenderlich guide, a must read.",
"homepage": "https://github.com/raywenderlich/swift-style-guide"
}, {
"title": "Airbnb",
"category": "style-guides",
"description": "Airbnb's Official Style Guide.",
"homepage": "https://github.com/airbnb/swift"
}, {
"title": "LinkedIn",
"category": "style-guides",
"description": "LinkedIn's Official Style Guide.",
"homepage": "https://github.com/linkedin/swift-style-guide"
}, {
"title": "swift-mode",
"category": "emacs",
"description": "Emacs support, including partial flycheck error support.",
"homepage": "https://github.com/swift-emacs/swift-mode"
}, {
"title": "swift-vim",
"category": "vim",
"description": "Vim runtime files.",
"homepage": "https://github.com/keith/swift.vim"
}, {
"title": "swift-colab",
"category": "google-colaboratory",
"description": "Run Swift in a browser.",
"homepage": "https://github.com/philipturner/swift-colab"
}, {
"title": "vim-polyglot",
"category": "vim",
"description": "Language pack for vim that includes vim-swift.",
"homepage": "https://github.com/sheerun/vim-polyglot"
}, {
"title": "open-source-ios-apps",
"category": "other-awesome-lists",
"description": "A collaborative list of open-source iOS Apps.",
"homepage": "https://github.com/dkhamsing/open-source-ios-apps"
}, {
"title": "open-source-mac-os-apps",
"category": "other-awesome-lists",
"description": "Awesome list of open source applications for macOS.",
"homepage": "https://github.com/serhii-londar/open-source-mac-os-apps"
}, {
"title": "awesome-macOS",
"category": "other-awesome-lists",
"description": "A curated list of awesome applications, softwares, tools and shiny things for macOS.",
"homepage": "https://github.com/iCHAIT/awesome-macOS"
}, {
"title": "Accio",
"category": "dependency-managers",
"description": "A SwiftPM based dependency manager for iOS & Co. with improvements over Carthage.",
"homepage": "https://github.com/JamitLabs/Accio"
}, {
"title": "Carthage",
"category": "dependency-managers",
"description": "A new dependency manager.",
"homepage": "https://github.com/Carthage/Carthage"
}, {
"title": "CocoaPods",
"category": "dependency-managers",
"description": "The most used dependency manager.",
"homepage": "https://github.com/CocoaPods/CocoaPods"
}, {
"title": "swift-package-manager",
"category": "dependency-managers",
"description": "SPM is the Package Manager for the Swift Programming Language.",
"homepage": "https://github.com/apple/swift-package-manager"
}, {
"title": "Design-Patterns-In-Swift",
"category": "patterns",
"description": "Design Patterns.",
"homepage": "https://github.com/ochococo/Design-Patterns-In-Swift"
}, {
"title": "Swiftbrew",
"category": "misc",
"description": "Homebrew for Swift packages.",
"homepage": "https://github.com/swiftbrew/Swiftbrew"
}, {
"title": "SwiftGen",
"category": "misc",
"description": "A suite of tools to auto-generate code for various assets of your project.",
"homepage": "https://github.com/SwiftGen/SwiftGen"
}, {
"title": "SwiftPlate",
"category": "misc",
"description": "Easily generate cross platform framework projects from the command line.",
"homepage": "https://github.com/JohnSundell/SwiftPlate"
}, {
"title": "Tuist",
"category": "misc",
"description": "An open source command line tool to create, maintain and interact with your Xcode projects at scale.",
"homepage": "https://github.com/tuist/tuist"
}, {
"title": "xcbeautify",
"category": "misc",
"description": "Little beautifier tool for xcodebuild.",
"homepage": "https://github.com/tuist/xcbeautify"
}, {
"title": "xcodeproj",
"category": "misc",
"description": "A library to read, update and write Xcode projects and workspaces.",
"homepage": "https://github.com/tuist/xcodeproj"
}, {
"title": "SwiftKit",
"category": "misc",
"description": "Start your next Open-Source Swift Framework 📦.",
"homepage": "https://github.com/SvenTiigi/SwiftKit",
"tags": ["cli", "swift", "generate", "framework", "xcode", "script", "brew"]
}, {
"title": "Capable",
"category": "accessibility",
"description": "Keep track of accessibility settings, leverage high contrast colors, and use scalable fonts to enable users with disabilities to use your app.",
"homepage": "https://github.com/chrs1885/Capable",
"tags": ["swift", "accessibility", "iOS", "tvOS", "watchOS", "macOS"]
}, {
"title": "CoreML-Models",
"category": "ai",
"description": "A collection of unique Core ML Models.",
"homepage": "https://github.com/likedan/Awesome-CoreML-Models"
}, {
"title": "DL4S",
"category": "ai",
"description": "Automatic differentiation, fast tensor operations and dynamic neural networks from CNNs and RNNs to transformers.",
"homepage": "https://github.com/palle-k/DL4S",
"tags": ["math", "machine-learning", "automatic-differentiation", "neural-networks"]
}, {
"title": "CenteredCollectionView",
"category": "uicollectionview",
"description": "A lightweight UICollectionViewLayout that pages and centers it's cells.",
"homepage": "https://github.com/BenEmdon/CenteredCollectionView"
}, {
"title": "Stellar",
"category": "animation",
"description": "A Physical animation library.",
"homepage": "https://github.com/AugustRush/Stellar"
}, {
"title": "Advance",
"category": "animation",
"description": "A powerful animation framework for iOS, tvOS, and OS X.",
"homepage": "https://github.com/timdonnelly/Advance"
}, {
"title": "Comets",
"category": "animation",
"description": "Animating Particles.",
"homepage": "https://github.com/cruisediary/Comets"
}, {
"title": "DKChainableAnimationKit",
"category": "animation",
"description": "Easy to read and write chainable animations.",
"homepage": "https://github.com/Draveness/DKChainableAnimationKit"
}, {
"title": "EasyAnimation",
"category": "animation",
"description": "A library to take the power of UIView.animateWithDuration(_:, animations:...) to a whole new level.",
"homepage": "https://github.com/icanzilb/EasyAnimation"
}, {
"title": "FlightAnimator",
"category": "animation",
"description": "Natural Blocks Based Core Animation Framework.",
"homepage": "https://github.com/AntonTheDev/FlightAnimator"
}, {
"title": "Gemini",
"category": "animation",
"description": "Gemini is rich scroll based animation framework.",
"homepage": "https://github.com/shoheiyokoyama/Gemini"
}, {
"title": "IBAnimatable",
"category": "animation",
"description": "Design and prototype UI, interaction, navigation, transition and animation for App Store ready Apps in Interface Builder with IBAnimatable.",
"homepage": "https://github.com/IBAnimatable/IBAnimatable"
}, {
"title": "Interpolate",
"category": "animation",
"description": "Interpolation framework for creating interactive gesture-driven animations.",
"homepage": "https://github.com/marmelroy/Interpolate"
}, {
"title": "Pastel",
"category": "animation",
"description": "Gradient animation effect like Instagram.",
"homepage": "https://github.com/cruisediary/Pastel",
"tags": ["swift", "animation", "instagram"],
"swift": 4
}, {
"title": "Presentation",
"category": "animation",
"description": "A library to help you to make tutorials, release notes and animated pages.",
"homepage": "https://github.com/hyperoslo/Presentation"
}, {
"title": "Pulsator",
"category": "animation",
"description": "Pulse animation for iOS.",
"homepage": "https://github.com/shu223/pulsator"
}, {
"title": "Spring",
"category": "animation",
"description": "A library to simplify iOS animations.",
"homepage": "https://github.com/MengTo/Spring"
}, {
"title": "spruce-ios",
"category": "animation",
"description": "Choreograph animations on the screen.",
"homepage": "https://github.com/willowtreeapps/spruce-ios"
}, {
"title": "YapAnimator",
"category": "animation",
"description": "Your fast and friendly physics-based animation system.",
"homepage": "https://github.com/yapstudios/YapAnimator"
}, {
"title": "ViewAnimator",
"category": "animation",
"description": "Brings your UI to life with just one line.",
"homepage": "https://github.com/marcosgriselli/ViewAnimator"
}, {
"title": "SpriteKitEasingSwift",
"category": "animation",
"description": "Better Easing for SpriteKit.",
"homepage": "https://github.com/craiggrummitt/SpriteKitEasingSwift"
}, {
"title": "Elephant",
"category": "animation",
"description": "Elegant SVG animation kit.",
"homepage": "https://github.com/s2mr/Elephant"
}, {
"title": "Appz",
"category": "app-routing",
"description": "Launch external apps and deeplink with ease.",
"homepage": "https://github.com/SwiftKitz/Appz"
}, {
"title": "URLNavigator",
"category": "app-routing",
"description": "Elegant URL Routing.",
"homepage": "https://github.com/devxoul/URLNavigator"
}, {
"title": "InAppPurchase",
"category": "app-store",
"description": "A Simple, Lightweight and Safe framework for In App Purchase.",
"homepage": "https://github.com/jinSasaki/InAppPurchase"
}, {
"title": "SwiftyStoreKit",
"category": "app-store",
"description": "Lightweight In App Purchases framework.",
"homepage": "https://github.com/bizz84/SwiftyStoreKit"
}, {
"title": "AudioKit",
"category": "audio",
"description": "Powerful audio synthesis, processing and analysis, without the steep learning curve.",
"homepage": "https://github.com/audiokit/AudioKit"
}, {
"title": "AudioPlayer",
"category": "audio",
"description": "A wrapper around AVPlayer with some cool features.",
"homepage": "https://github.com/delannoyk/AudioPlayer"
}, {
"title": "AudioPlayerSwift",
"category": "audio",
"description": "AudioPlayer is a simple class for playing audio (basic and advanced usage) in iOS, OS X and tvOS apps.",
"homepage": "https://github.com/tbaranes/AudioPlayerSwift"
}, {
"title": "Beethoven",
"category": "audio",
"description": "An audio processing library for pitch detection of musical signals.",
"homepage": "https://github.com/vadymmarkov/Beethoven"
}, {
"title": "MusicKit",
"category": "audio",
"description": "A framework for composing and transforming music.",
"homepage": "https://github.com/benzguo/MusicKit"
}, {
"title": "Cely",
"category": "authentication",
"description": "A Plug-n-Play login framework.",
"homepage": "https://github.com/cely-tools/Cely"
}, {
"title": "Cleanse",
"category": "dependency-injection",
"description": "A Lightweight Dependency Injection Framework by Square.",
"homepage": "https://github.com/square/Cleanse"
}, {
"title": "Deli",
"category": "dependency-injection",
"description": "Deli is an easy-to-use Dependency Injection(DI).",
"homepage": "https://github.com/kawoou/Deli",
"tags": ["swift", "ios", "di"]
}, {
"title": "Dip",
"category": "dependency-injection",
"description": "A simple Dependency Injection Container.",
"homepage": "https://github.com/AliSoftware/Dip"
}, {
"title": "RandomUserSwift",
"category": "api",
"description": "Framework to Generate Random Users - An Unofficial SDK for randomuser.me.",
"homepage": "https://github.com/dingwilson/RandomUserSwift"
}, {