forked from matteocrippa/awesome-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contents.json
4164 lines (4164 loc) · 149 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": "Calendar",
"id": "calendar",
"parent": "ui"
}, {
"title": "Style Guides",
"id": "style-guides",
"parent": "guides"
}, {
"title": "Boilerplates",
"id": "boilerplates"
}, {
"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": "Benchmark",
"id": "benchmark"
}, {
"title": "Demo Apps",
"id": "demo-apps",
"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": "AI",
"id": "ai",
"parent": "libs",
"description": "Libs for AI based projects (Machine Learning, Neural Networks etc)."
}, {
"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": "nlp",
"parent": "libs"
}, {
"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": "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": "Data Structures",
"id": "data-structures",
"parent": "data-management"
}, {
"title": "PDF",
"id": "pdf",
"parent": "libs"
}, {
"title": "Realm",
"id": "realm",
"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": "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": "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 in Swift 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": "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 in Swift"
}, {
"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": "Quality",
"id": "quality",
"parent": "libs"
}, {
"title": "Security",
"id": "security",
"parent": "libs"
}, {
"title": "Cryptography",
"id": "cryptography",
"parent": "security",
"description": "Deal with cryptography method easily in Swift"
}, {
"title": "Keychain",
"id": "keychain",
"parent": "security"
}, {
"title": "TouchID",
"id": "touchid",
"parent": "security"
}, {
"title": "Sensors",
"id": "sensors",
"parent": "hardware",
"description": "Manage your device sensors in a faster and easier way"
}, {
"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"
}, {
"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": "ApplicationDelegate",
"id": "applicationdelegate",
"parent": "ui"
}, {
"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": "UITableView",
"id": "uitableview",
"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"
}],
"projects": [{
"title": "Apple eBook",
"category": "official-guides",
"description": "Official Apple eBook for swift beginners.",
"homepage": "https://itunes.apple.com/us/book/swift-programming-language/id881256329?mt=11"
}, {
"title": "API Design Guidelines",
"category": "official-guides",
"description": "Official Swift API design guidelines.",
"homepage": "https://swift.org/documentation/api-design-guidelines/"
}, {
"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 for swift.",
"homepage": "https://github.com/allenwong/30DaysofSwift"
}, {
"title": "A better way to learn Swift",
"category": "third-party-guides",
"description": "Learn Swift in a different way.",
"homepage": "https://github.com/GoThinkster/swift"
}, {
"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 8 Apps with Swift",
"category": "third-party-guides",
"description": "Stanford course by Paul Hegarty.",
"homepage": "https://itunes.apple.com/us/course/developing-ios-8-apps-swift/id961180099"
}, {
"title": "Developing iOS 9 Apps with Swift",
"category": "third-party-guides",
"description": "Stanford course by Paul Hegarty. (Ongoing)",
"homepage": "https://itunes.apple.com/us/course/developing-ios-9-apps-swift/id1104579961"
}, {
"title": "Hacking With Swift",
"category": "third-party-guides",
"description": "Complete Swift training course that teaches app development through 30 hands-on projects, for free. Everything is taught as part of a practical project, so you can immediately apply your knowledge as you learn ([projects source code](https://github.com/twostraws/HackingWithSwift)).",
"homepage": "https://www.hackingwithswift.com"
}, {
"title": "Learn Swift",
"category": "third-party-guides",
"description": "a collection of tuts that will help you learning Swift via playground.",
"homepage": "https://github.com/nettlep/learn-swift"
}, {
"title": "Natasha the Robot",
"category": "third-party-guides",
"description": "Weekly Newsletter on learning Swift",
"homepage": "https://www.natashatherobot.com/"
}, {
"title": "Practice Swift",
"category": "third-party-guides",
"description": "an interesting guide to learn Swift.",
"homepage": "https://github.com/domenicosolazzo/practice-swift"
}, {
"title": "Swift A Day",
"category": "third-party-guides",
"description": "Daily swift experiments by Linda Dong.",
"homepage": "https://github.com/lindadong/swift-a-day"
}, {
"title": "Swift Sandbox Newsletter",
"category": "third-party-guides",
"description": "Swift Sandbox is a weekly newsletter containing a collection of links to the best Swift **code** and **developer tools**. Every Friday. **Free**.",
"homepage": "http://swiftsandbox.io"
}, {
"title": "Swift-Weekly",
"category": "third-party-guides",
"description": "Weekly Swift Language Gems, Tips and Tricks.",
"homepage": "https://github.com/vandadnp/swift-weekly"
}, {
"title": "SwiftDoc",
"category": "third-party-guides",
"description": "Auto-generated documentation for Swift.",
"homepage": "http://swiftdoc.org/"
}, {
"title": "SwiftGuide CN",
"category": "third-party-guides",
"description": "A Chinese written guide for Swift.",
"homepage": "https://github.com/ipader/SwiftGuide"
}, {
"title": "SwiftInFlux",
"category": "third-party-guides",
"description": "A well explained list of feature in flux for Swift.",
"homepage": "https://github.com/ksm/SwiftInFlux"
}, {
"title": "SwiftIntro",
"category": "third-party-guides",
"description": "**Memory game** in Swift fetching images from any Instagram account. Lists **tasks** for you to do in order to learn Swift - at three difficulty levels.",
"homepage": "https://github.com/Sajjon/SwiftIntro"
}, {
"title": "Swifty",
"category": "third-party-guides",
"description": "App to learn to code in Swift.",
"homepage": "https://itunes.apple.com/us/app/swifty-learn-to-code-in-swift!/id886315617"
}, {
"title": "GitHub",
"category": "style-guides",
"description": "Style guide & coding conventions for Swift projects.",
"homepage": "https://github.com/github/swift-style-guide"
}, {
"title": "Raywenderlich",
"category": "style-guides",
"description": "Raywenderlich Swift guide, a must read.",
"homepage": "https://github.com/raywenderlich/swift-style-guide"
}, {
"title": "SlideShare",
"category": "style-guides",
"description": "Style guides that SlideShare uses for their Swift iOS app.",
"homepage": "https://github.com/SlideShareInc/swift-style-guide"
}, {
"title": "LinkedIn",
"category": "style-guides",
"description": "LinkedIn's Official Swift Style Guide",
"homepage": "https://github.com/linkedin/swift-style-guide"
}, {
"title": "Swift-Best-Practices",
"category": "style-guides",
"description": "Best practices for software development with Swift.",
"homepage": "https://github.com/schwa/Swift-Community-Best-Practices/"
}, {
"title": "Webview Boilerplate",
"category": "boilerplates",
"description": "Swift starting point for webview app.",
"homepage": "https://github.com/nabilfreeman/ios-universal-webview-boilerplate"
}, {
"title": "swift-mode",
"category": "emacs",
"description": "Emacs Swift support, including partial flycheck error support.",
"homepage": "https://github.com/swift-emacs/swift-mode"
}, {
"title": "swift-vim",
"category": "vim",
"description": "play Swift with vim editor.",
"homepage": "https://github.com/keith/swift.vim"
}, {
"title": "vim-polyglot",
"category": "vim",
"description": "language pack for vim that includes vim-swift.",
"homepage": "https://github.com/sheerun/vim-polyglot"
}, {
"title": "vim-swift",
"category": "vim",
"description": "adds Swift support to vim. It covers syntax, indenting, and more.",
"homepage": "https://github.com/toyamarinyon/vim-swift"
}, {
"title": "open-source-ios-apps",
"category": "demo-apps",
"description": "A collaborative list of open-source iOS Apps.",
"homepage": "https://github.com/dkhamsing/open-source-ios-apps"
}, {
"title": "awesome-macOS",
"category": "demo-apps",
"description": "A curated list of awesome applications, softwares, tools and shiny things for macOS.",
"homepage": "https://github.com/iCHAIT/awesome-macOS"
}, {
"title": "Carthage",
"category": "dependency-managers",
"description": "a new dependency manager for Swift.",
"homepage": "https://github.com/Carthage/Carthage"
}, {
"title": "CocoaPods",
"category": "dependency-managers",
"description": "the most used dependency manager for Objective-C and Swift (Swift supported since version 0.36.0).",
"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 implemented in Swift.",
"homepage": "https://github.com/ochococo/Design-Patterns-In-Swift"
}, {
"title": "generator-swift-framework",
"category": "misc",
"description": "Scaffolds out a Xcode framework project based on Swift 2.0.",
"homepage": "https://github.com/cybertk/generator-swift-framework"
}, {
"title": "InteractivePlayground",
"category": "misc",
"description": "A playground exploring the interactivity of Xcode 7.3 playgrounds.",
"homepage": "https://github.com/dasdom/InteractivePlayground"
}, {
"title": "MAIKit",
"category": "misc",
"description": "A framework for sharing code between iOS and OS X.",
"homepage": "https://github.com/MichaelBuckley/MAIKit"
}, {
"title": "sbconstants",
"category": "misc",
"description": "A nifty tool to generate constants file by grabbing identifiers from storyboards in a Swift project.",
"homepage": "https://github.com/paulsamuels/SBConstants"
}, {
"title": "swamp",
"category": "misc",
"description": "Icon stamping in Swift.",
"homepage": "https://github.com/robb/swamp"
}, {
"title": "swift-compiler-crashes",
"category": "misc",
"description": "A collection of test cases crashing the Swift compiler.",
"homepage": "https://github.com/practicalswift/swift-compiler-crashes"
}, {
"title": "SwiftGen",
"category": "misc",
"description": "A suite of tools written in Swift to auto-generate Swift code for various assets of your project.",
"homepage": "https://github.com/AliSoftware/SwiftGen"
}, {
"title": "BrainCore",
"category": "ai",
"description": "The iOS and OS X neural network framework",
"homepage": "https://github.com/aleph7/BrainCore"
}, {
"title": "Swift-AI",
"category": "ai",
"description": "An artificial intelligence and machine learning library in Swift.",
"homepage": "https://github.com/collinhundley/Swift-AI"
},{
"title": "Stellar",
"category": "animation",
"description": "A Physical animation library for swift.",
"homepage": "https://github.com/AugustRush/Stellar"
}, {
"title": "Advance",
"category": "animation",
"description": "A powerful animation framework for iOS.",
"homepage": "https://github.com/storehouse/Advance"
}, {
"title": "Animo",
"category": "animation",
"description": "SpriteKit-like animation builders for CALayers.",
"homepage": "https://github.com/eure/Animo"
}, {
"title": "Cheetah",
"category": "animation",
"description": "An animation library on iOS with Swift 2.",
"homepage": "https://github.com/suguru/Cheetah"
}, {
"title": "DKChainableAnimationKit",
"category": "animation",
"description": "Easy to read and write chainable animations in Swift.",
"homepage": "https://github.com/Draveness/DKChainableAnimationKit"
}, {
"title": "EasyAnimation",
"category": "animation",
"description": "A Swift 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 in Swift",
"homepage": "https://github.com/AntonTheDev/FlightAnimator"
}, {
"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": "Swift Interpolation framework for creating interactive gesture-driven animations.",
"homepage": "https://github.com/marmelroy/Interpolate"
}, {
"title": "JDAnimationKit",
"category": "animation",
"description": "Animate easy and with less code with Swift.",
"homepage": "https://github.com/JellyDevelopment/JDAnimationKit"
}, {
"title": "Morgan",
"category": "animation",
"description": "An always growing animation set.",
"homepage": "https://github.com/RamonGilabert/Morgan"
}, {
"title": "Presentation",
"category": "animation",
"description": "A Swift 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 in Swift.",
"homepage": "https://github.com/MengTo/Spring"
}, {
"title": "Walker",
"category": "animation",
"description": "An animation engine to make your animations easy and more readable.",
"homepage": "https://github.com/RamonGilabert/Walker"
}, {
"title": "ZoomTransitioning",
"category": "animation",
"description": "A custom transition with image zooming animation.",
"homepage": "https://github.com/WorldDownTown/ZoomTransitioning"
}, {
"title": "Appz",
"category": "app-routing",
"description": "Launch external apps, and deeplink, with ease using Swift!",
"homepage": "https://github.com/SwiftKitz/Appz"
}, {
"title": "IKRouter",
"category": "app-routing",
"description": "URLScheme router than supports auto creation of UIViewControllers.",
"homepage": "https://github.com/IanKeen/IKRouter"
}, {
"title": "URLNavigator",
"category": "app-routing",
"description": "Elegant URL Routing for Swift.",
"homepage": "https://github.com/devxoul/URLNavigator"
}, {
"title": "InAppFw",
"category": "app-store",
"description": "In App Purchase Manager framework.",
"homepage": "https://github.com/sandorgyulai/InAppFramework"
}, {
"title": "SwiftyStoreKit",
"category": "app-store",
"description": "Lightweight In App Purchases Swift 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 Swift 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 in Swift.",
"homepage": "https://github.com/benzguo/MusicKit"
}, {
"title": "TuningFork",
"category": "audio",
"description": "A Simple Tuner for iOS.",
"homepage": "https://github.com/comyar/TuningFork"
}, {
"title": "Simplicity",
"category": "authentication",
"description": "A simple way to implement Facebook and Google login in your iOS and OS X apps.",
"homepage": "https://github.com/SimplicityMobile/Simplicity"
}, {
"title": "Voucher",
"category": "authentication",
"description": "A simple library to make authenticating tvOS apps easy via their iOS counterparts.",
"homepage": "https://github.com/rsattar/Voucher"
}, {
"title": "Cleanse",
"category": "dependency-injection",
"description": "A Lightweight Swift Dependency Injection Framework by Square.",
"homepage": "https://github.com/square/Cleanse"
}, {
"title": "Dip",
"category": "dependency-injection",
"description": "A simple Dependency Injection Container.",
"homepage": "https://github.com/AliSoftware/Dip"
}, {
"title": "Federal Data SDK",
"category": "api",
"description": "Eases access to multiple federal government OpenGov APIs.",
"homepage": "https://github.com/USDepartmentofLabor/Swift-Federal-Data-SDK"
}, {
"title": "RandomUserSwift",
"category": "api",
"description": "Swift 3 Framework to Generate Random Users - An Unofficial SDK for randomuser.me",
"homepage": "https://github.com/dingwilson/RandomUserSwift"
},{
"title": "GithubPilot",
"category": "api",
"description": "Github API V3 wrapper.",
"homepage": "https://github.com/jindulys/GithubPilot"
}, {
"title": "GooglePlacesAutocomplete",
"category": "api",
"description": "Simple Google Places address entry for iOS.",
"homepage": "https://github.com/watsonbox/ios_google_places_autocomplete"
}, {
"title": "PXGoogleDirections",
"category": "api",
"description": "Google Directions API helper.",
"homepage": "https://github.com/poulpix/PXGoogleDirections"
}, {
"title": "reddift",
"category": "api",
"description": "reddit API wrapper.",
"homepage": "https://github.com/sonsongithub/reddift"
}, {
"title": "Swifter Twitter",
"category": "api",
"description": "Swifter Twitter framework for Swift.",
"homepage": "https://github.com/mattdonnelly/Swifter"
}, {
"title": "Swinject",
"category": "dependency-injection",
"description": "A dependency injection framework for Swift.",
"homepage": "https://github.com/Swinject/Swinject"
}, {
"title": "Typhoon",
"category": "dependency-injection",
"description": "Dependency injection toolkit in Swift.",
"homepage": "https://github.com/appsquickly/Typhoon"
}, {
"title": "BlueCap",
"category": "bluetooth",
"description": "BlueCap provides a swift wrapper around CoreBluetooth and much more.",
"homepage": "https://github.com/troystribling/BlueCap"
}, {
"title": "BluetoothKit",
"category": "bluetooth",
"description": "Easily communicate between iOS/OSX devices using BLE.",
"homepage": "https://github.com/rhummelmose/BluetoothKit"
}, {
"title": "RxBluetoothKit",
"category": "bluetooth",
"description": "iOS & OSX Bluetooth library for RxSwift.",
"homepage": "https://github.com/polidea/RxBluetoothKit"
}, {
"title": "Bluetonium",
"category": "bluetooth",
"description": "Bluetonium is a Swift Library that makes it easy to communicate with Bluetooth devices.",
"homepage": "https://github.com/e-sites/Bluetonium"
}, {
"title": "ALCameraViewController",
"category": "camera",
"description": "Camera view controller with custom image picker and image cropping.",
"homepage": "https://github.com/AlexLittlejohn/ALCameraViewController"
}, {
"title": "Fusuma",
"category": "camera",
"description": "Instagram-like photo browser and a camera feature.",
"homepage": "https://github.com/ytakzk/Fusuma"
}, {
"title": "BarcodeScanner",
"category": "barcode",
"description": "A simple and beautiful barcode scanner view controller.",
"homepage": "https://github.com/hyperoslo/BarcodeScanner"
}, {
"title": "QRCodeReader.swift",
"category": "barcode",
"description": "Simple QRCode reader in Swift",
"homepage": "https://github.com/yannickl/QRCodeReader.swift"
}, {
"title": "Chatto",
"category": "chat",
"description": "A lightweight framework to build chat applications, made in Swift.",
"homepage": "https://github.com/badoo/Chatto"
}, {
"title": "MessageKit",
"category": "chat",
"description": "Eventually, a Swift re-write of JSQMessagesViewController.",
"homepage": "https://github.com/MessageKit/MessageKit-iOS"
},{
"title": "Chameleon",
"category": "colors",
"description": "Chameleon is a lightweight, yet powerful, color framework for iOS (Objective-C & Swift).",
"homepage": "https://github.com/ViccAlexander/Chameleon"
}, {
"title": "Colors",
"category": "colors",
"description": "A pure Swift library for using ANSI codes.",
"homepage": "https://github.com/icodeforlove/Colors"
}, {
"title": "DynamicColor",