├── .gitignore ├── KKPasscodeLock.podspec ├── LICENSE ├── NOTICE ├── README.mdown ├── example ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── KKPasscodeLock │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── KKPasscodeLockDemo-Info.plist │ ├── KKPasscodeLockDemo-Prefix.pch │ ├── RootViewController.h │ ├── RootViewController.m │ ├── RootViewController.xib │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SettingsViewController.xib │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── Localizable.strings │ ├── he.lproj │ │ └── InfoPlist.strings │ ├── main.m │ └── nl.lproj │ │ └── InfoPlist.strings └── KKPasscodeLockDemo.xcodeproj │ └── project.pbxproj ├── screenshots ├── ipad-1.png ├── iphone-1.png └── iphone-2.png ├── src ├── KKKeychain.h ├── KKKeychain.m ├── KKPasscodeLock.bundle │ ├── box_empty.png │ ├── box_empty@2x.png │ ├── box_filled.png │ ├── box_filled@2x.png │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ └── nl.lproj │ │ └── Localizable.strings ├── KKPasscodeLock.h ├── KKPasscodeLock.m ├── KKPasscodeSettingsViewController.h ├── KKPasscodeSettingsViewController.m ├── KKPasscodeViewController.h └── KKPasscodeViewController.m └── tests ├── KKPasscodeLock └── KKPasscodeLock-Prefix.pch ├── KKPasscodeLockTests.xcodeproj └── project.pbxproj └── KKPasscodeLockTests ├── KKPasscodeLock-Info.plist ├── KKPasscodeLockTests.h ├── KKPasscodeLockTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/.gitignore -------------------------------------------------------------------------------- /KKPasscodeLock.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/KKPasscodeLock.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/NOTICE -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/README.mdown -------------------------------------------------------------------------------- /example/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/Default-568h@2x.png -------------------------------------------------------------------------------- /example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/Default.png -------------------------------------------------------------------------------- /example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/Default@2x.png -------------------------------------------------------------------------------- /example/KKPasscodeLock/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/AppDelegate.h -------------------------------------------------------------------------------- /example/KKPasscodeLock/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/AppDelegate.m -------------------------------------------------------------------------------- /example/KKPasscodeLock/KKPasscodeLockDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/KKPasscodeLockDemo-Info.plist -------------------------------------------------------------------------------- /example/KKPasscodeLock/KKPasscodeLockDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/KKPasscodeLockDemo-Prefix.pch -------------------------------------------------------------------------------- /example/KKPasscodeLock/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/RootViewController.h -------------------------------------------------------------------------------- /example/KKPasscodeLock/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/RootViewController.m -------------------------------------------------------------------------------- /example/KKPasscodeLock/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/RootViewController.xib -------------------------------------------------------------------------------- /example/KKPasscodeLock/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/SettingsViewController.h -------------------------------------------------------------------------------- /example/KKPasscodeLock/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/SettingsViewController.m -------------------------------------------------------------------------------- /example/KKPasscodeLock/SettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/SettingsViewController.xib -------------------------------------------------------------------------------- /example/KKPasscodeLock/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/KKPasscodeLock/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /example/KKPasscodeLock/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/KKPasscodeLock/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /example/KKPasscodeLock/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/KKPasscodeLock/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLock/main.m -------------------------------------------------------------------------------- /example/KKPasscodeLock/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/KKPasscodeLockDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/example/KKPasscodeLockDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /screenshots/ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/screenshots/ipad-1.png -------------------------------------------------------------------------------- /screenshots/iphone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/screenshots/iphone-1.png -------------------------------------------------------------------------------- /screenshots/iphone-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/screenshots/iphone-2.png -------------------------------------------------------------------------------- /src/KKKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKKeychain.h -------------------------------------------------------------------------------- /src/KKKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKKeychain.m -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/box_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/box_empty.png -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/box_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/box_empty@2x.png -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/box_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/box_filled.png -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/box_filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/box_filled@2x.png -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/KKPasscodeLock.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /src/KKPasscodeLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.h -------------------------------------------------------------------------------- /src/KKPasscodeLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeLock.m -------------------------------------------------------------------------------- /src/KKPasscodeSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeSettingsViewController.h -------------------------------------------------------------------------------- /src/KKPasscodeSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeSettingsViewController.m -------------------------------------------------------------------------------- /src/KKPasscodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeViewController.h -------------------------------------------------------------------------------- /src/KKPasscodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/src/KKPasscodeViewController.m -------------------------------------------------------------------------------- /tests/KKPasscodeLock/KKPasscodeLock-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/tests/KKPasscodeLock/KKPasscodeLock-Prefix.pch -------------------------------------------------------------------------------- /tests/KKPasscodeLockTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/tests/KKPasscodeLockTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/KKPasscodeLockTests/KKPasscodeLock-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/tests/KKPasscodeLockTests/KKPasscodeLock-Info.plist -------------------------------------------------------------------------------- /tests/KKPasscodeLockTests/KKPasscodeLockTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/tests/KKPasscodeLockTests/KKPasscodeLockTests.h -------------------------------------------------------------------------------- /tests/KKPasscodeLockTests/KKPasscodeLockTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aporat/KKPasscodeLock/HEAD/tests/KKPasscodeLockTests/KKPasscodeLockTests.m -------------------------------------------------------------------------------- /tests/KKPasscodeLockTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------