https://github.com/nextfaze/fazekit
A collection of helper functions and extensions for Swift iOS apps
https://github.com/nextfaze/fazekit
hacktoberfest
Last synced: 11 months ago
JSON representation
A collection of helper functions and extensions for Swift iOS apps
- Host: GitHub
- URL: https://github.com/nextfaze/fazekit
- Owner: NextFaze
- License: apache-2.0
- Created: 2016-08-11T23:30:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-01T06:23:33.000Z (over 1 year ago)
- Last Synced: 2024-10-01T06:36:58.837Z (over 1 year ago)
- Topics: hacktoberfest
- Language: Swift
- Homepage:
- Size: 303 KB
- Stars: 4
- Watchers: 15
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FazeKit
[](https://travis-ci.org/NextFaze/FazeKit)
[](http://cocoapods.org/pods/FazeKit)
[](http://cocoapods.org/pods/FazeKit)
[](http://cocoapods.org/pods/FazeKit)
[](https://developer.apple.com/swift)
{ width=180px }
A collection of extensions and convenience functions on Foundation, UIKit and other Cocoa Frameworks, built in Swift for iOS development. The spiritual successor to [NFAllocInit](https://github.com/NextFaze/NFAllocInit).
Included are little things, like shorthand mutation of views:
```swift
view.left = 40.0
```
device accessors:
```
UIDevice.is4Inch()
```
and operator overloads for `NSDate`:
```swift
if oneDate < anotherDate {
print("one date is earlier")
}
```
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
iOS 12.0
## Installation
FazeKit is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod "FazeKit"
```
## License
FazeKit is available under the APACHE 2.0 license. See the LICENSE file for more info.