Skip to content
forked from Ryasnoy/AppLocker

AppLocker - simple lock screen for iOS Application ( Swift 3+, iOS 8.0+) Touch ID / Face ID

License

Notifications You must be signed in to change notification settings

imvenj/AppLocker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Swift CocoaPods License Platform Twitter

AppLocker

Very simple locker for your iOS application

Preview

Modes

enum ALMode { // Modes for AppLocker
  case validate
  case change
  case deactive
  case create
}

Configuration

struct ALAppearance { // The structure used to display the controller
  var title: String?
  var subtitle: String?
  var image: UIImage?
  var color: UIColor?
  var isSensorsEnabled: Bool?
}

Example

Simple call of controller

AppLocker.present(with: .create) // validate, deactive, change

Calling the controller with configuration

    var appearance = ALAppearance()
    appearance.image = UIImage(named: "face")!
    appearance.title = "Devios Ryasnoy"
    appearance.isSensorsEnabled = true

    AppLocker.present(with: mode, and: appearance)

Requirements

AppLocker is written in Swift 3. iOS 8.0+ Required

Installation

Just move the Source folder to your project

CocoaPods

  pod 'AppLocker'

Author

Oleg Ryasnoy, ryasnoy.oleg@gmail.com

Telegram: https://t.me/ryasnoy

License

AppLocker is available under the MIT license. See the LICENSE file for more info.

About

AppLocker - simple lock screen for iOS Application ( Swift 3+, iOS 8.0+) Touch ID / Face ID

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 89.3%
  • Ruby 6.3%
  • Objective-C 4.4%