https://github.com/endocrimes/latch
A simple Swift Keychain Wrapper for iOS, watchOS, and OS X.
https://github.com/endocrimes/latch
Last synced: 12 months ago
JSON representation
A simple Swift Keychain Wrapper for iOS, watchOS, and OS X.
- Host: GitHub
- URL: https://github.com/endocrimes/latch
- Owner: endocrimes
- License: mit
- Created: 2015-09-02T20:56:08.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-11-11T15:39:03.000Z (over 6 years ago)
- Last Synced: 2025-06-30T06:09:15.505Z (12 months ago)
- Language: Swift
- Homepage: http://danieltomlinson.github.io/Latch
- Size: 217 KB
- Stars: 58
- Watchers: 3
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Latch
A simple Swift 2.0 Keychain Wrapper for iOS, watchOS 2, and OS X.
# Usage
A proper example of how to use Latch can be seen in the [tests](https://github.com/endocrimes/Latch/blob/master/LatchTests/LatchTests.swift).
```swift
import Latch
let latch = Latch(service: "co.rocketapps.latch.example")
latch.setObject("super_secret_token", forKey: "FBAccessToken")
let token = latch.stringForKey("FBAccessToken")
print(token)
```
# Documentation
You can find full documentation for Latch [here](https://endocrimes.github.io/Latch), or use the inline documentation.
# Installation
Latch can be installed using [CocoaPods](https://cocoapods.org), [Carthage](https://github.com/Carthage/Carthage.git), or git submodules.
## CocoaPods
1. Add `pod "Latch"` to your podfile
2. Run `pod install`
## Carthage
1. Add `github "endocrimes/Latch"` to your Cartfile
2. `$ carthage update`
3. Copy the frameworks into your Xcode project
## Git Submodules
1. `$ git submodule add https://github.com/endocrimes/Latch.git`
2. `$ git submodule update --init --recursive`
3. Add the project
# Contributing
## Issues
Issues and feature requests are welcome, although the intention is to keep Latch lightweight.
## Submitting Pull Requests
1. Fork it ( http://github.com/endocrimes/Latch/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request