├── LICENSE.md ├── README.md ├── header.png └── logo.jpeg /LICENSE.md: -------------------------------------------------------------------------------- 1 | Licensed under the **MIT** license 2 | 3 | > Copyright (c) 2016 Awesome Labs 4 | > 5 | > Permission is hereby granted, free of charge, to any person obtaining 6 | > a copy of this software and associated documentation files (the 7 | > "Software"), to deal in the Software without restriction, including 8 | > without limitation the rights to use, copy, modify, merge, publish, 9 | > distribute, sublicense, and/or sell copies of the Software, and to 10 | > permit persons to whom the Software is furnished to do so, subject to 11 | > the following conditions: 12 | > 13 | > The above copyright notice and this permission notice shall be 14 | > included in all copies or substantial portions of the Software. 15 | > 16 | > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [![Swift Version][swift-image]][swift-url] 3 | [![License][license-image]][license-url] 4 | [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) 5 | [![CocoaPods Compatible](https://img.shields.io/cocoapods/v/EZSwiftExtensions.svg)](https://img.shields.io/cocoapods/v/LFAlertController.svg) 6 | [![Platform](https://img.shields.io/cocoapods/p/LFAlertController.svg?style=flat)](http://cocoapods.org/pods/LFAlertController) 7 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 8 | 9 | # Product Name 10 |
11 |

12 | 13 | Logo 14 | 15 |

16 | One to two paragraph statement about your product and what it does. 17 |

18 |

19 | 20 |

21 | 22 | 23 |

24 | 25 | ## Features 26 | 27 | - [x] Feature 1 28 | - [x] Feature 2 29 | - [x] Feature 3 30 | - [x] Feature 4 31 | - [x] Feature 5 32 | 33 | ## Requirements 34 | 35 | - iOS 8.0+ 36 | - Xcode 10.0 37 | 38 | ## Installation 39 | 40 | #### CocoaPods 41 | You can use [CocoaPods](http://cocoapods.org/) to install `YourLibrary` by adding it to your `Podfile`: 42 | 43 | ```ruby 44 | platform :ios, '8.0' 45 | use_frameworks! 46 | pod 'YourLibrary' 47 | ``` 48 | 49 | To get the full benefits import `YourLibrary` wherever you import UIKit 50 | 51 | ``` swift 52 | import UIKit 53 | import YourLibrary 54 | ``` 55 | #### Carthage 56 | Create a `Cartfile` that lists the framework and run `carthage update`. Follow the [instructions](https://github.com/Carthage/Carthage#if-youre-building-for-ios) to add `$(SRCROOT)/Carthage/Build/iOS/YourLibrary.framework` to an iOS project. 57 | 58 | ``` 59 | github "yourUsername/yourlibrary" 60 | ``` 61 | #### Manually 62 | 1. Download and drop ```YourLibrary.swift``` in your project. 63 | 2. Congratulations! 64 | 65 | ## Usage example 66 | 67 | ```swift 68 | import EZSwiftExtensions 69 | ez.detectScreenShot { () -> () in 70 | print("User took a screen shot") 71 | } 72 | ``` 73 | 74 | ## Contribute 75 | 76 | We would love you for the contribution to **YourLibraryName**, check the ``LICENSE`` file for more info. 77 | 78 | ## Meta 79 | 80 | Your Name – [@YourTwitter](https://twitter.com/dbader_org) – YourEmail@example.com 81 | 82 | Distributed under the XYZ license. See ``LICENSE`` for more information. 83 | 84 | [https://github.com/yourname/github-link](https://github.com/dbader/) 85 | 86 | [swift-image]:https://img.shields.io/badge/swift-3.0-orange.svg 87 | [swift-url]: https://swift.org/ 88 | [license-image]: https://img.shields.io/badge/License-MIT-blue.svg 89 | [license-url]: LICENSE 90 | [travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square 91 | [codebeat-image]: https://codebeat.co/badges/c19b47ea-2f9d-45df-8458-b2d952fe9dad 92 | [codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com 93 | -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-labs/iOS-readme-template/bd19199767b1bbce07cfe411fa14eacd025e615e/header.png -------------------------------------------------------------------------------- /logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-labs/iOS-readme-template/bd19199767b1bbce07cfe411fa14eacd025e615e/logo.jpeg --------------------------------------------------------------------------------