Files
felixfoertsch.de/Content/Archive/220123-ff.de v10 felixfoertsch.github.io/_posts/2019/2019-03-25-High-Quality-Swift-Libraries.md
T

25 lines
1.2 KiB
Markdown

---
layout: post
title: "Collection of High Quality Swift Libraries"
categories:
- Programming
tags:
- English
- Swift
last_modified_at: 2019-03-30
excerpt_separator: <!-- more -->
---
Libraries are an important part of programming. However, there should be a **really** good reason, if you decide to use a library. And if you use one, it should be a good one. These are some from my collection:
<!-- more -->
- [JTAppleCalendar](https://github.com/patchthecode/JTAppleCalendar): Need a calendar view? Don't roll your own.
- [Keychain](https://github.com/evgenyneu/keychain-swift): Have something that need secure storage, like a password? Put it in the keychain.
- [SPPermission](https://github.com/IvanVorobei/SPPermission): Your app needs permissions? Inform the user properly. It's important.
- [SwiftDate](https://github.com/malcommac/SwiftDate): Handles all your date and time needs. [Don't roll your own](https://www.youtube.com/watch?v=-5wpm-gesOY).
- [WhatsNewKit](https://github.com/SvenTiigi/WhatsNewKit): Welcome your new user like apple does.
## Helper
- [SwiftyUserDefaults](https://github.com/radex/SwiftyUserDefaults): A small wrapper around NSUserDefaults that makes the usage swifter.