Very simple locker for your iOS
application
enum ALMode { // Modes for AppLocker
case validate
case change
case deactive
case create
}
struct ALAppearance { // The structure used to display the controller
var title: String?
var subtitle: String?
var image: UIImage?
var color: UIColor?
var isSensorsEnabled: Bool?
}
AppLocker.present(with: .create) // validate, deactive, change
var appearance = ALAppearance()
appearance.image = UIImage(named: "face")!
appearance.title = "Devios Ryasnoy"
appearance.isSensorsEnabled = true
AppLocker.present(with: mode, and: appearance)
AppLocker is written in Swift 3. iOS 8.0+ Required
Just move the Source
folder to your project
pod 'AppLocker'
Oleg Ryasnoy, ryasnoy.oleg@gmail.com
Telegram: https://t.me/ryasnoy
AppLocker is available under the MIT license. See the LICENSE file for more info.