├── SwiftKeyboardExtension ├── Keyboard │ ├── KeyArt.xcassets │ │ ├── abc.imageset │ │ │ ├── abc.png │ │ │ ├── abc@2x.png │ │ │ ├── abc@3x.png │ │ │ └── Contents.json │ │ ├── abcHL.imageset │ │ │ ├── abcHL.png │ │ │ ├── abcHL@2x.png │ │ │ ├── abcHL@3x.png │ │ │ └── Contents.json │ │ ├── globe.imageset │ │ │ ├── globe.png │ │ │ ├── globe@2x.png │ │ │ ├── globe@3x.png │ │ │ └── Contents.json │ │ ├── return.imageset │ │ │ ├── return.png │ │ │ ├── return@2x.png │ │ │ ├── return@3x.png │ │ │ └── Contents.json │ │ ├── globeHL.imageset │ │ │ ├── globeHL.png │ │ │ ├── globeHL@2x.png │ │ │ ├── globeHL@3x.png │ │ │ └── Contents.json │ │ ├── numbers.imageset │ │ │ ├── numbers.png │ │ │ ├── numbers@2x.png │ │ │ ├── numbers@3x.png │ │ │ └── Contents.json │ │ ├── shift_0.imageset │ │ │ ├── shift_0.png │ │ │ ├── shift_0@2x.png │ │ │ ├── shift_0@3x.png │ │ │ └── Contents.json │ │ ├── shift_1.imageset │ │ │ ├── shift_1.png │ │ │ ├── shift_1@2x.png │ │ │ ├── shift_1@3x.png │ │ │ └── Contents.json │ │ ├── shift_2.imageset │ │ │ ├── shift_2.png │ │ │ ├── shift_2@2x.png │ │ │ ├── shift_2@3x.png │ │ │ └── Contents.json │ │ ├── symbols.imageset │ │ │ ├── symbols.png │ │ │ ├── symbols@2x.png │ │ │ ├── symbols@3x.png │ │ │ └── Contents.json │ │ ├── backspace.imageset │ │ │ ├── backspace.png │ │ │ ├── backspace@2x.png │ │ │ ├── backspace@3x.png │ │ │ └── Contents.json │ │ ├── numbersHL.imageset │ │ │ ├── numbersHL.png │ │ │ ├── numbersHL@2x.png │ │ │ ├── numbersHL@3x.png │ │ │ └── Contents.json │ │ ├── returnHL.imageset │ │ │ ├── returnHL.png │ │ │ ├── returnHL@2x.png │ │ │ ├── returnHL@3x.png │ │ │ └── Contents.json │ │ ├── shift_0HL.imageset │ │ │ ├── shift_0HL.png │ │ │ ├── shift_0HL@2x.png │ │ │ ├── shift_0HL@3x.png │ │ │ └── Contents.json │ │ ├── shift_1HL.imageset │ │ │ ├── shift_1HL.png │ │ │ ├── shift_1HL@2x.png │ │ │ ├── shift_1HL@3x.png │ │ │ └── Contents.json │ │ ├── shift_2HL.imageset │ │ │ ├── shift_2HL.png │ │ │ ├── shift_2HL@2x.png │ │ │ ├── shift_2HL@3x.png │ │ │ └── Contents.json │ │ ├── symbolsHL.imageset │ │ │ ├── symbolsHL.png │ │ │ ├── symbolsHL@2x.png │ │ │ ├── symbolsHL@3x.png │ │ │ └── Contents.json │ │ └── backspaceHL.imageset │ │ │ ├── backspaceHL.png │ │ │ ├── backspaceHL@2x.png │ │ │ ├── backspaceHL@3x.png │ │ │ └── Contents.json │ ├── Info.plist │ └── KeyboardViewController.swift ├── SwiftKeyboardExtension.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── SwiftKeyboardExtensionTests │ ├── Info.plist │ └── SwiftKeyboardExtensionTests.swift └── SwiftKeyboardExtension │ ├── DataViewController.swift │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── AppDelegate.swift │ ├── ModelController.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ └── RootViewController.swift ├── .whitesource ├── .gitignore ├── README.md └── LICENSE /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/abc@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/abcHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/globe@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/return@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/globeHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/numbers@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/shift_0@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/shift_1@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/shift_2@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/symbols@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/returnHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/backspace@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/numbersHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/shift_0HL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/shift_1HL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/shift_2HL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/symbolsHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL@2x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitizenme/SwiftKeyboardExtension/HEAD/SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/backspaceHL@3x.png -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- 1 | ########################################################## 2 | #### WhiteSource Integration configuration file #### 3 | ########################################################## 4 | 5 | # Configuration # 6 | #---------------# 7 | ws.repo.scan=true 8 | vulnerable.check.run.conclusion.level=failure 9 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "abc.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "abc@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "abc@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/abcHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "abcHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "abcHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "abcHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globe.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "globe.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "globe@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "globe@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/return.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "return.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "return@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "return@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/globeHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "globeHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "globeHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "globeHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbers.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "numbers.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "numbers@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "numbers@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_0.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_0@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_0@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_1.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_1@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_1@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_2.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_2@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_2@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbols.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "symbols.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "symbols@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "symbols@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/returnHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "returnHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "returnHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "returnHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspace.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "backspace.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "backspace@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "backspace@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/numbersHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "numbersHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "numbersHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "numbersHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_0HL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_0HL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_0HL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_0HL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_1HL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_1HL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_1HL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_1HL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/shift_2HL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "shift_2HL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "shift_2HL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "shift_2HL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/symbolsHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "symbolsHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "symbolsHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "symbolsHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyArt.xcassets/backspaceHL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "backspaceHL.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "backspaceHL@2x.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "backspaceHL@3x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | # Pods/ 27 | 28 | # Carthage 29 | # 30 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 31 | # Carthage/Checkouts 32 | 33 | Carthage/Build 34 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtensionTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | me.izen.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/DataViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DataViewController.swift 3 | // SwiftKeyboardExtension 4 | // 5 | // Created by Joe Chavez on 8/11/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class DataViewController: UIViewController { 12 | 13 | @IBOutlet weak var dataLabel: UILabel! 14 | var dataObject: AnyObject? 15 | 16 | 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | // Do any additional setup after loading the view, typically from a nib. 20 | } 21 | 22 | override func didReceiveMemoryWarning() { 23 | super.didReceiveMemoryWarning() 24 | // Dispose of any resources that can be recreated. 25 | } 26 | 27 | override func viewWillAppear(animated: Bool) { 28 | super.viewWillAppear(animated) 29 | } 30 | 31 | 32 | } 33 | 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iOS 8 Swift Custom Keyboard Extension Template 2 | 3 | Written in Swift and using storyboards and autolayout, this universal keyboard template is a complete starter kit for anyone looking to create a custom keyboard. All basic keys have been created, and the keyboard is switchable between number and symbol modes in the same manner as the system keyboard. 4 | 5 | ## Features 6 | 7 | The following features are also implemented, with more to come: 8 | 9 | * Universal design works on all devices, in all orientations 10 | * Double tap SPACE key to automatically add a ". " at the end of a sentence 11 | * Double tap SHIFT key to activate caps lock, triple tap reverts to no shift 12 | * Keyboard letters change case when SHIFT key is activated 13 | * SHIFT deactivates automatically (unless caps lock is on) 14 | * Numbers and punctuation can be accessed by pressing '123', symbols can be accessed by pressing '#+=' 15 | * All keys functional, including DELETE, RETURN, and GLOBE keys 16 | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Joe Chavez 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtensionTests/SwiftKeyboardExtensionTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwiftKeyboardExtensionTests.swift 3 | // SwiftKeyboardExtensionTests 4 | // 5 | // Created by Joe Chavez on 8/11/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import XCTest 11 | 12 | class SwiftKeyboardExtensionTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | } 18 | 19 | override func tearDown() { 20 | // Put teardown code here. This method is called after the invocation of each test method in the class. 21 | super.tearDown() 22 | } 23 | 24 | func testExample() { 25 | // This is an example of a functional test case. 26 | XCTAssert(true, "Pass") 27 | } 28 | 29 | func testPerformanceExample() { 30 | // This is an example of a performance test case. 31 | self.measureBlock() { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | Keyboard 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIcons 12 | 13 | CFBundleIcons~ipad 14 | 15 | CFBundleIdentifier 16 | me.izen.SwiftKeyboardExtension.$(PRODUCT_NAME:rfc1034identifier) 17 | CFBundleInfoDictionaryVersion 18 | 6.0 19 | CFBundleName 20 | $(PRODUCT_NAME) 21 | CFBundlePackageType 22 | XPC! 23 | CFBundleShortVersionString 24 | 1.0 25 | CFBundleSignature 26 | ???? 27 | CFBundleVersion 28 | 1 29 | NSExtension 30 | 31 | NSExtensionAttributes 32 | 33 | IsASCIICapable 34 | 35 | PrefersRightToLeft 36 | 37 | PrimaryLanguage 38 | en-US 39 | RequestsOpenAccess 40 | 41 | 42 | NSExtensionMainStoryboard 43 | Keyboard 44 | NSExtensionPointIdentifier 45 | com.apple.keyboard-service 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | me.izen.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UISupportedInterfaceOrientations~ipad 40 | 41 | UIInterfaceOrientationPortrait 42 | UIInterfaceOrientationPortraitUpsideDown 43 | UIInterfaceOrientationLandscapeLeft 44 | UIInterfaceOrientationLandscapeRight 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SwiftKeyboardExtension 4 | // 5 | // Created by Joe Chavez on 8/11/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/ModelController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ModelController.swift 3 | // SwiftKeyboardExtension 4 | // 5 | // Created by Joe Chavez on 8/11/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /* 12 | A controller object that manages a simple model -- a collection of month names. 13 | 14 | The controller serves as the data source for the page view controller; it therefore implements pageViewController:viewControllerBeforeViewController: and pageViewController:viewControllerAfterViewController:. 15 | It also implements a custom method, viewControllerAtIndex: which is useful in the implementation of the data source methods, and in the initial configuration of the application. 16 | 17 | There is no need to actually create view controllers for each page in advance -- indeed doing so incurs unnecessary overhead. Given the data model, these methods create, configure, and return a new view controller on demand. 18 | */ 19 | 20 | 21 | class ModelController: NSObject, UIPageViewControllerDataSource { 22 | 23 | var pageData = NSArray() 24 | 25 | 26 | override init() { 27 | super.init() 28 | // Create the data model. 29 | let dateFormatter = NSDateFormatter() 30 | pageData = dateFormatter.monthSymbols 31 | } 32 | 33 | func viewControllerAtIndex(index: Int, storyboard: UIStoryboard) -> DataViewController? { 34 | // Return the data view controller for the given index. 35 | if (self.pageData.count == 0) || (index >= self.pageData.count) { 36 | return nil 37 | } 38 | 39 | // Create a new view controller and pass suitable data. 40 | let dataViewController = storyboard.instantiateViewControllerWithIdentifier("DataViewController") as! DataViewController 41 | dataViewController.dataObject = self.pageData[index] 42 | return dataViewController 43 | } 44 | 45 | func indexOfViewController(viewController: DataViewController) -> Int { 46 | // Return the index of the given data view controller. 47 | // For simplicity, this implementation uses a static array of model objects and the view controller stores the model object; you can therefore use the model object to identify the index. 48 | if let dataObject: AnyObject = viewController.dataObject { 49 | return self.pageData.indexOfObject(dataObject) 50 | } else { 51 | return NSNotFound 52 | } 53 | } 54 | 55 | // MARK: - Page View Controller Data Source 56 | 57 | func pageViewController(pageViewController: UIPageViewController, viewControllerBeforeViewController viewController: UIViewController) -> UIViewController? { 58 | var index = self.indexOfViewController(viewController as! DataViewController) 59 | if (index == 0) || (index == NSNotFound) { 60 | return nil 61 | } 62 | 63 | index-- 64 | return self.viewControllerAtIndex(index, storyboard: viewController.storyboard!) 65 | } 66 | 67 | func pageViewController(pageViewController: UIPageViewController, viewControllerAfterViewController viewController: UIViewController) -> UIViewController? { 68 | var index = self.indexOfViewController(viewController as! DataViewController) 69 | if index == NSNotFound { 70 | return nil 71 | } 72 | 73 | index++ 74 | if index == self.pageData.count { 75 | return nil 76 | } 77 | return self.viewControllerAtIndex(index, storyboard: viewController.storyboard!) 78 | } 79 | 80 | } 81 | 82 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/RootViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RootViewController.swift 3 | // SwiftKeyboardExtension 4 | // 5 | // Created by Joe Chavez on 8/11/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class RootViewController: UIViewController, UIPageViewControllerDelegate { 12 | 13 | var pageViewController: UIPageViewController? 14 | 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | // Do any additional setup after loading the view, typically from a nib. 19 | // Configure the page view controller and add it as a child view controller. 20 | self.pageViewController = UIPageViewController(transitionStyle: .PageCurl, navigationOrientation: .Horizontal, options: nil) 21 | self.pageViewController!.delegate = self 22 | 23 | let startingViewController: DataViewController = self.modelController.viewControllerAtIndex(0, storyboard: self.storyboard!)! 24 | let viewControllers = [startingViewController] 25 | self.pageViewController!.setViewControllers(viewControllers, direction: .Forward, animated: false, completion: {done in }) 26 | 27 | self.pageViewController!.dataSource = self.modelController 28 | 29 | self.addChildViewController(self.pageViewController!) 30 | self.view.addSubview(self.pageViewController!.view) 31 | 32 | // Set the page view controller's bounds using an inset rect so that self's view is visible around the edges of the pages. 33 | var pageViewRect = self.view.bounds 34 | if UIDevice.currentDevice().userInterfaceIdiom == .Pad { 35 | pageViewRect = CGRectInset(pageViewRect, 40.0, 40.0) 36 | } 37 | self.pageViewController!.view.frame = pageViewRect 38 | 39 | self.pageViewController!.didMoveToParentViewController(self) 40 | 41 | // Add the page view controller's gesture recognizers to the book view controller's view so that the gestures are started more easily. 42 | self.view.gestureRecognizers = self.pageViewController!.gestureRecognizers 43 | } 44 | 45 | override func didReceiveMemoryWarning() { 46 | super.didReceiveMemoryWarning() 47 | // Dispose of any resources that can be recreated. 48 | } 49 | 50 | var modelController: ModelController { 51 | // Return the model controller object, creating it if necessary. 52 | // In more complex implementations, the model controller may be passed to the view controller. 53 | if _modelController == nil { 54 | _modelController = ModelController() 55 | } 56 | return _modelController! 57 | } 58 | 59 | var _modelController: ModelController? = nil 60 | 61 | // MARK: - UIPageViewController delegate methods 62 | 63 | func pageViewController(pageViewController: UIPageViewController, spineLocationForInterfaceOrientation orientation: UIInterfaceOrientation) -> UIPageViewControllerSpineLocation { 64 | if (orientation == .Portrait) || (orientation == .PortraitUpsideDown) || (UIDevice.currentDevice().userInterfaceIdiom == .Phone) { 65 | // In portrait orientation or on iPhone: Set the spine position to "min" and the page view controller's view controllers array to contain just one view controller. Setting the spine position to 'UIPageViewControllerSpineLocationMid' in landscape orientation sets the doubleSided property to YES, so set it to NO here. 66 | let currentViewController = self.pageViewController!.viewControllers[0] as! UIViewController 67 | let viewControllers = [currentViewController] 68 | self.pageViewController!.setViewControllers(viewControllers, direction: .Forward, animated: true, completion: {done in }) 69 | 70 | self.pageViewController!.doubleSided = false 71 | return .Min 72 | } 73 | 74 | // In landscape orientation: Set set the spine location to "mid" and the page view controller's view controllers array to contain two view controllers. If the current page is even, set it to contain the current and next view controllers; if it is odd, set the array to contain the previous and current view controllers. 75 | let currentViewController = self.pageViewController!.viewControllers[0] as! DataViewController 76 | var viewControllers: [AnyObject] 77 | 78 | let indexOfCurrentViewController = self.modelController.indexOfViewController(currentViewController) 79 | if (indexOfCurrentViewController == 0) || (indexOfCurrentViewController % 2 == 0) { 80 | let nextViewController = self.modelController.pageViewController(self.pageViewController!, viewControllerAfterViewController: currentViewController) 81 | viewControllers = [currentViewController, nextViewController!] 82 | } else { 83 | let previousViewController = self.modelController.pageViewController(self.pageViewController!, viewControllerBeforeViewController: currentViewController) 84 | viewControllers = [previousViewController!, currentViewController] 85 | } 86 | self.pageViewController!.setViewControllers(viewControllers, direction: .Forward, animated: true, completion: {done in }) 87 | 88 | return .Mid 89 | } 90 | 91 | 92 | } 93 | 94 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/Keyboard/KeyboardViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // KeyboardViewController.swift 3 | // Keyboard 4 | // 5 | // Created by Joe Chavez on 8/10/15. 6 | // Copyright (c) 2015 izen.me, Inc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class KeyboardViewController: UIInputViewController { 12 | 13 | var shiftStatus: Int! // 0 = off, 1 = on, 2 = caps lock 14 | 15 | @IBOutlet var numbersRow1View: UIView! 16 | @IBOutlet var numbersRow2View: UIView! 17 | @IBOutlet var symbolsRow1View: UIView! 18 | @IBOutlet var symbolsRow2View: UIView! 19 | @IBOutlet var numbersSymbolsRow3View: UIView! 20 | 21 | @IBOutlet var letterButtonsArray: [UIButton]! 22 | @IBOutlet var switchModeRow3Button: UIButton! 23 | @IBOutlet var switchModeRow4Button: UIButton! 24 | @IBOutlet var shiftButton: UIButton! 25 | @IBOutlet var spaceButton: UIButton! 26 | 27 | private var proxy: UITextDocumentProxy { 28 | return textDocumentProxy as! UITextDocumentProxy 29 | } 30 | 31 | override func updateViewConstraints() { 32 | super.updateViewConstraints() 33 | 34 | // Add custom view sizing constraints here 35 | } 36 | 37 | override func viewDidLoad() { 38 | super.viewDidLoad() 39 | 40 | shiftStatus = 1; 41 | } 42 | 43 | override func didReceiveMemoryWarning() { 44 | super.didReceiveMemoryWarning() 45 | // Dispose of any resources that can be recreated 46 | } 47 | 48 | @IBAction func globeKeyPressed(sender: UIButton) { 49 | advanceToNextInputMode() 50 | } 51 | 52 | 53 | @IBAction func shiftKeyPressedX(sender: UITapGestureRecognizer) { 54 | } 55 | 56 | @IBAction func keyPressed(sender: UIButton) { 57 | proxy.insertText(sender.titleLabel!.text!) 58 | 59 | if(shiftStatus == 1) { 60 | shiftKeyPressed(self.shiftButton) 61 | } 62 | } 63 | 64 | @IBAction func backspaceKeyPressed(sender: UIButton) { 65 | proxy.deleteBackward() 66 | } 67 | 68 | @IBAction func spaceKeyPressed(sender: UIButton) 69 | { 70 | proxy.insertText(" ") 71 | } 72 | 73 | @IBAction func shifKeyDoubleTapped(sender: UITapGestureRecognizer) { 74 | shiftStatus = 2; 75 | shiftKeys() 76 | } 77 | 78 | @IBAction func shiftKeyTripleTapped(sender: UITapGestureRecognizer) { 79 | shiftStatus = 0 80 | shiftKeyPressed(self.shiftButton) 81 | } 82 | 83 | @IBAction func spaceKeyDoubleTapped(sender: UITapGestureRecognizer) { 84 | proxy.deleteBackward() 85 | proxy.insertText(". ") 86 | 87 | if(shiftStatus == 0) { 88 | shiftKeyPressed(self.shiftButton) 89 | } 90 | } 91 | 92 | @IBAction func returnKeyPressed(sender: UIButton) { 93 | proxy.insertText("\n"); 94 | } 95 | 96 | @IBAction func shiftKeyPressed(sender: UIButton) { 97 | shiftStatus = shiftStatus > 0 ? 0 : 1; 98 | shiftKeys() 99 | } 100 | 101 | func shiftKeys() { 102 | if(shiftStatus == 0) { 103 | for (letterButtonIndex, letterButton) in enumerate(letterButtonsArray) { 104 | letterButton.setTitle(letterButton.titleLabel?.text!.lowercaseString, forState: UIControlState.Normal) 105 | } 106 | } 107 | else { 108 | for (letterButtonIndex, letterButton) in enumerate(letterButtonsArray) { 109 | letterButton.setTitle(letterButton.titleLabel?.text!.uppercaseString, forState: UIControlState.Normal) 110 | } 111 | } 112 | 113 | var shiftButtonImageName = String(format: "shift_%i.png", shiftStatus) 114 | shiftButton.setImage(UIImage(named: shiftButtonImageName), forState: UIControlState.Normal) 115 | 116 | var shiftButtonHLImageName = String(format: "shift_%i.png", shiftStatus) 117 | shiftButton.setImage(UIImage(named: shiftButtonHLImageName), forState: UIControlState.Highlighted) 118 | } 119 | 120 | @IBAction func switchKeyboardMode(sender: UIButton) { 121 | numbersRow1View.hidden = true; 122 | numbersRow2View.hidden = true; 123 | symbolsRow1View.hidden = true; 124 | symbolsRow2View.hidden = true; 125 | numbersSymbolsRow3View.hidden = true; 126 | 127 | switch (sender.tag) { 128 | 129 | case 1: 130 | numbersRow1View.hidden = false 131 | numbersRow2View.hidden = false 132 | numbersSymbolsRow3View.hidden = false 133 | 134 | switchModeRow3Button.setImage(UIImage(named: "symbols.png"), forState: UIControlState.Normal) 135 | switchModeRow3Button.setImage(UIImage(named: "symbolsHL.png"), forState: UIControlState.Highlighted) 136 | switchModeRow3Button.tag = 2 137 | 138 | switchModeRow4Button.setImage(UIImage(named: "abc.png"), forState: UIControlState.Normal) 139 | switchModeRow4Button.setImage(UIImage(named: "abcHL.png"), forState: UIControlState.Highlighted) 140 | switchModeRow4Button.tag = 0 141 | break; 142 | 143 | case 2: 144 | 145 | symbolsRow1View.hidden = false 146 | symbolsRow2View.hidden = false 147 | numbersSymbolsRow3View.hidden = false 148 | 149 | switchModeRow3Button.setImage(UIImage(named: "numbers.png"), forState: UIControlState.Normal) 150 | switchModeRow3Button.setImage(UIImage(named: "numbersHL.png"), forState: UIControlState.Highlighted) 151 | switchModeRow3Button.tag = 1 152 | 153 | break; 154 | 155 | default: 156 | switchModeRow4Button.setImage(UIImage(named: "numbers.png"), forState: UIControlState.Normal) 157 | switchModeRow4Button.setImage(UIImage(named: "numbersHL.png"), forState: UIControlState.Highlighted) 158 | switchModeRow4Button.tag = 1 159 | break; 160 | 161 | } 162 | } 163 | 164 | override func textWillChange(textInput: UITextInput) { 165 | // The app is about to change the document's contents. Perform any preparation here. 166 | } 167 | 168 | override func textDidChange(textInput: UITextInput) { 169 | // The app has just changed the document's contents, the document context has been updated. 170 | } 171 | 172 | } 173 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /SwiftKeyboardExtension/SwiftKeyboardExtension.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | D83E3E731B7AFB8200BB3F27 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E721B7AFB8200BB3F27 /* AppDelegate.swift */; }; 11 | D83E3E751B7AFB8200BB3F27 /* RootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E741B7AFB8200BB3F27 /* RootViewController.swift */; }; 12 | D83E3E771B7AFB8200BB3F27 /* DataViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E761B7AFB8200BB3F27 /* DataViewController.swift */; }; 13 | D83E3E791B7AFB8200BB3F27 /* ModelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E781B7AFB8200BB3F27 /* ModelController.swift */; }; 14 | D83E3E7C1B7AFB8200BB3F27 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D83E3E7A1B7AFB8200BB3F27 /* Main.storyboard */; }; 15 | D83E3E7E1B7AFB8200BB3F27 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D83E3E7D1B7AFB8200BB3F27 /* Images.xcassets */; }; 16 | D83E3E811B7AFB8200BB3F27 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = D83E3E7F1B7AFB8200BB3F27 /* LaunchScreen.xib */; }; 17 | D83E3E8D1B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E8C1B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.swift */; }; 18 | D83E3E9F1B7AFB9D00BB3F27 /* KeyboardViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D83E3E9E1B7AFB9D00BB3F27 /* KeyboardViewController.swift */; }; 19 | D83E3EA21B7AFB9D00BB3F27 /* Keyboard.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = D83E3E9A1B7AFB9D00BB3F27 /* Keyboard.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 20 | D83E3EA91B7AFCC600BB3F27 /* KeyArt.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D83E3EA71B7AFCC600BB3F27 /* KeyArt.xcassets */; }; 21 | D83E3EAA1B7AFCC600BB3F27 /* Keyboard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D83E3EA81B7AFCC600BB3F27 /* Keyboard.storyboard */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | D83E3E871B7AFB8200BB3F27 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = D83E3E651B7AFB8200BB3F27 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = D83E3E6C1B7AFB8200BB3F27; 30 | remoteInfo = SwiftKeyboardExtension; 31 | }; 32 | D83E3EA01B7AFB9D00BB3F27 /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = D83E3E651B7AFB8200BB3F27 /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = D83E3E991B7AFB9D00BB3F27; 37 | remoteInfo = Keyboard; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXCopyFilesBuildPhase section */ 42 | D83E3EA61B7AFB9D00BB3F27 /* Embed App Extensions */ = { 43 | isa = PBXCopyFilesBuildPhase; 44 | buildActionMask = 2147483647; 45 | dstPath = ""; 46 | dstSubfolderSpec = 13; 47 | files = ( 48 | D83E3EA21B7AFB9D00BB3F27 /* Keyboard.appex in Embed App Extensions */, 49 | ); 50 | name = "Embed App Extensions"; 51 | runOnlyForDeploymentPostprocessing = 0; 52 | }; 53 | /* End PBXCopyFilesBuildPhase section */ 54 | 55 | /* Begin PBXFileReference section */ 56 | D83E3E6D1B7AFB8200BB3F27 /* SwiftKeyboardExtension.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftKeyboardExtension.app; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | D83E3E711B7AFB8200BB3F27 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 58 | D83E3E721B7AFB8200BB3F27 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 59 | D83E3E741B7AFB8200BB3F27 /* RootViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootViewController.swift; sourceTree = ""; }; 60 | D83E3E761B7AFB8200BB3F27 /* DataViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DataViewController.swift; sourceTree = ""; }; 61 | D83E3E781B7AFB8200BB3F27 /* ModelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ModelController.swift; sourceTree = ""; }; 62 | D83E3E7B1B7AFB8200BB3F27 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 63 | D83E3E7D1B7AFB8200BB3F27 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 64 | D83E3E801B7AFB8200BB3F27 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 65 | D83E3E861B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftKeyboardExtensionTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | D83E3E8B1B7AFB8200BB3F27 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 67 | D83E3E8C1B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftKeyboardExtensionTests.swift; sourceTree = ""; }; 68 | D83E3E9A1B7AFB9D00BB3F27 /* Keyboard.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = Keyboard.appex; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | D83E3E9D1B7AFB9D00BB3F27 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 70 | D83E3E9E1B7AFB9D00BB3F27 /* KeyboardViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeyboardViewController.swift; sourceTree = ""; }; 71 | D83E3EA71B7AFCC600BB3F27 /* KeyArt.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = KeyArt.xcassets; sourceTree = ""; }; 72 | D83E3EA81B7AFCC600BB3F27 /* Keyboard.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Keyboard.storyboard; sourceTree = ""; }; 73 | /* End PBXFileReference section */ 74 | 75 | /* Begin PBXFrameworksBuildPhase section */ 76 | D83E3E6A1B7AFB8200BB3F27 /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | D83E3E831B7AFB8200BB3F27 /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | ); 88 | runOnlyForDeploymentPostprocessing = 0; 89 | }; 90 | D83E3E971B7AFB9D00BB3F27 /* Frameworks */ = { 91 | isa = PBXFrameworksBuildPhase; 92 | buildActionMask = 2147483647; 93 | files = ( 94 | ); 95 | runOnlyForDeploymentPostprocessing = 0; 96 | }; 97 | /* End PBXFrameworksBuildPhase section */ 98 | 99 | /* Begin PBXGroup section */ 100 | D83E3E641B7AFB8200BB3F27 = { 101 | isa = PBXGroup; 102 | children = ( 103 | D83E3E6F1B7AFB8200BB3F27 /* SwiftKeyboardExtension */, 104 | D83E3E891B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests */, 105 | D83E3E9B1B7AFB9D00BB3F27 /* Keyboard */, 106 | D83E3E6E1B7AFB8200BB3F27 /* Products */, 107 | ); 108 | sourceTree = ""; 109 | }; 110 | D83E3E6E1B7AFB8200BB3F27 /* Products */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | D83E3E6D1B7AFB8200BB3F27 /* SwiftKeyboardExtension.app */, 114 | D83E3E861B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.xctest */, 115 | D83E3E9A1B7AFB9D00BB3F27 /* Keyboard.appex */, 116 | ); 117 | name = Products; 118 | sourceTree = ""; 119 | }; 120 | D83E3E6F1B7AFB8200BB3F27 /* SwiftKeyboardExtension */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | D83E3E721B7AFB8200BB3F27 /* AppDelegate.swift */, 124 | D83E3E741B7AFB8200BB3F27 /* RootViewController.swift */, 125 | D83E3E761B7AFB8200BB3F27 /* DataViewController.swift */, 126 | D83E3E781B7AFB8200BB3F27 /* ModelController.swift */, 127 | D83E3E7A1B7AFB8200BB3F27 /* Main.storyboard */, 128 | D83E3E7D1B7AFB8200BB3F27 /* Images.xcassets */, 129 | D83E3E7F1B7AFB8200BB3F27 /* LaunchScreen.xib */, 130 | D83E3E701B7AFB8200BB3F27 /* Supporting Files */, 131 | ); 132 | path = SwiftKeyboardExtension; 133 | sourceTree = ""; 134 | }; 135 | D83E3E701B7AFB8200BB3F27 /* Supporting Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | D83E3E711B7AFB8200BB3F27 /* Info.plist */, 139 | ); 140 | name = "Supporting Files"; 141 | sourceTree = ""; 142 | }; 143 | D83E3E891B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | D83E3E8C1B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.swift */, 147 | D83E3E8A1B7AFB8200BB3F27 /* Supporting Files */, 148 | ); 149 | path = SwiftKeyboardExtensionTests; 150 | sourceTree = ""; 151 | }; 152 | D83E3E8A1B7AFB8200BB3F27 /* Supporting Files */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | D83E3E8B1B7AFB8200BB3F27 /* Info.plist */, 156 | ); 157 | name = "Supporting Files"; 158 | sourceTree = ""; 159 | }; 160 | D83E3E9B1B7AFB9D00BB3F27 /* Keyboard */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | D83E3EA71B7AFCC600BB3F27 /* KeyArt.xcassets */, 164 | D83E3EA81B7AFCC600BB3F27 /* Keyboard.storyboard */, 165 | D83E3E9E1B7AFB9D00BB3F27 /* KeyboardViewController.swift */, 166 | D83E3E9C1B7AFB9D00BB3F27 /* Supporting Files */, 167 | ); 168 | path = Keyboard; 169 | sourceTree = ""; 170 | }; 171 | D83E3E9C1B7AFB9D00BB3F27 /* Supporting Files */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | D83E3E9D1B7AFB9D00BB3F27 /* Info.plist */, 175 | ); 176 | name = "Supporting Files"; 177 | sourceTree = ""; 178 | }; 179 | /* End PBXGroup section */ 180 | 181 | /* Begin PBXNativeTarget section */ 182 | D83E3E6C1B7AFB8200BB3F27 /* SwiftKeyboardExtension */ = { 183 | isa = PBXNativeTarget; 184 | buildConfigurationList = D83E3E901B7AFB8200BB3F27 /* Build configuration list for PBXNativeTarget "SwiftKeyboardExtension" */; 185 | buildPhases = ( 186 | D83E3E691B7AFB8200BB3F27 /* Sources */, 187 | D83E3E6A1B7AFB8200BB3F27 /* Frameworks */, 188 | D83E3E6B1B7AFB8200BB3F27 /* Resources */, 189 | D83E3EA61B7AFB9D00BB3F27 /* Embed App Extensions */, 190 | ); 191 | buildRules = ( 192 | ); 193 | dependencies = ( 194 | D83E3EA11B7AFB9D00BB3F27 /* PBXTargetDependency */, 195 | ); 196 | name = SwiftKeyboardExtension; 197 | productName = SwiftKeyboardExtension; 198 | productReference = D83E3E6D1B7AFB8200BB3F27 /* SwiftKeyboardExtension.app */; 199 | productType = "com.apple.product-type.application"; 200 | }; 201 | D83E3E851B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests */ = { 202 | isa = PBXNativeTarget; 203 | buildConfigurationList = D83E3E931B7AFB8200BB3F27 /* Build configuration list for PBXNativeTarget "SwiftKeyboardExtensionTests" */; 204 | buildPhases = ( 205 | D83E3E821B7AFB8200BB3F27 /* Sources */, 206 | D83E3E831B7AFB8200BB3F27 /* Frameworks */, 207 | D83E3E841B7AFB8200BB3F27 /* Resources */, 208 | ); 209 | buildRules = ( 210 | ); 211 | dependencies = ( 212 | D83E3E881B7AFB8200BB3F27 /* PBXTargetDependency */, 213 | ); 214 | name = SwiftKeyboardExtensionTests; 215 | productName = SwiftKeyboardExtensionTests; 216 | productReference = D83E3E861B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.xctest */; 217 | productType = "com.apple.product-type.bundle.unit-test"; 218 | }; 219 | D83E3E991B7AFB9D00BB3F27 /* Keyboard */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = D83E3EA31B7AFB9D00BB3F27 /* Build configuration list for PBXNativeTarget "Keyboard" */; 222 | buildPhases = ( 223 | D83E3E961B7AFB9D00BB3F27 /* Sources */, 224 | D83E3E971B7AFB9D00BB3F27 /* Frameworks */, 225 | D83E3E981B7AFB9D00BB3F27 /* Resources */, 226 | ); 227 | buildRules = ( 228 | ); 229 | dependencies = ( 230 | ); 231 | name = Keyboard; 232 | productName = Keyboard; 233 | productReference = D83E3E9A1B7AFB9D00BB3F27 /* Keyboard.appex */; 234 | productType = "com.apple.product-type.app-extension"; 235 | }; 236 | /* End PBXNativeTarget section */ 237 | 238 | /* Begin PBXProject section */ 239 | D83E3E651B7AFB8200BB3F27 /* Project object */ = { 240 | isa = PBXProject; 241 | attributes = { 242 | LastUpgradeCheck = 0640; 243 | ORGANIZATIONNAME = "izen.me, Inc."; 244 | TargetAttributes = { 245 | D83E3E6C1B7AFB8200BB3F27 = { 246 | CreatedOnToolsVersion = 6.4; 247 | }; 248 | D83E3E851B7AFB8200BB3F27 = { 249 | CreatedOnToolsVersion = 6.4; 250 | TestTargetID = D83E3E6C1B7AFB8200BB3F27; 251 | }; 252 | D83E3E991B7AFB9D00BB3F27 = { 253 | CreatedOnToolsVersion = 6.4; 254 | }; 255 | }; 256 | }; 257 | buildConfigurationList = D83E3E681B7AFB8200BB3F27 /* Build configuration list for PBXProject "SwiftKeyboardExtension" */; 258 | compatibilityVersion = "Xcode 3.2"; 259 | developmentRegion = English; 260 | hasScannedForEncodings = 0; 261 | knownRegions = ( 262 | en, 263 | Base, 264 | ); 265 | mainGroup = D83E3E641B7AFB8200BB3F27; 266 | productRefGroup = D83E3E6E1B7AFB8200BB3F27 /* Products */; 267 | projectDirPath = ""; 268 | projectRoot = ""; 269 | targets = ( 270 | D83E3E6C1B7AFB8200BB3F27 /* SwiftKeyboardExtension */, 271 | D83E3E851B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests */, 272 | D83E3E991B7AFB9D00BB3F27 /* Keyboard */, 273 | ); 274 | }; 275 | /* End PBXProject section */ 276 | 277 | /* Begin PBXResourcesBuildPhase section */ 278 | D83E3E6B1B7AFB8200BB3F27 /* Resources */ = { 279 | isa = PBXResourcesBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | D83E3E7C1B7AFB8200BB3F27 /* Main.storyboard in Resources */, 283 | D83E3E811B7AFB8200BB3F27 /* LaunchScreen.xib in Resources */, 284 | D83E3E7E1B7AFB8200BB3F27 /* Images.xcassets in Resources */, 285 | ); 286 | runOnlyForDeploymentPostprocessing = 0; 287 | }; 288 | D83E3E841B7AFB8200BB3F27 /* Resources */ = { 289 | isa = PBXResourcesBuildPhase; 290 | buildActionMask = 2147483647; 291 | files = ( 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | }; 295 | D83E3E981B7AFB9D00BB3F27 /* Resources */ = { 296 | isa = PBXResourcesBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | D83E3EA91B7AFCC600BB3F27 /* KeyArt.xcassets in Resources */, 300 | D83E3EAA1B7AFCC600BB3F27 /* Keyboard.storyboard in Resources */, 301 | ); 302 | runOnlyForDeploymentPostprocessing = 0; 303 | }; 304 | /* End PBXResourcesBuildPhase section */ 305 | 306 | /* Begin PBXSourcesBuildPhase section */ 307 | D83E3E691B7AFB8200BB3F27 /* Sources */ = { 308 | isa = PBXSourcesBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | D83E3E751B7AFB8200BB3F27 /* RootViewController.swift in Sources */, 312 | D83E3E791B7AFB8200BB3F27 /* ModelController.swift in Sources */, 313 | D83E3E771B7AFB8200BB3F27 /* DataViewController.swift in Sources */, 314 | D83E3E731B7AFB8200BB3F27 /* AppDelegate.swift in Sources */, 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | }; 318 | D83E3E821B7AFB8200BB3F27 /* Sources */ = { 319 | isa = PBXSourcesBuildPhase; 320 | buildActionMask = 2147483647; 321 | files = ( 322 | D83E3E8D1B7AFB8200BB3F27 /* SwiftKeyboardExtensionTests.swift in Sources */, 323 | ); 324 | runOnlyForDeploymentPostprocessing = 0; 325 | }; 326 | D83E3E961B7AFB9D00BB3F27 /* Sources */ = { 327 | isa = PBXSourcesBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | D83E3E9F1B7AFB9D00BB3F27 /* KeyboardViewController.swift in Sources */, 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | }; 334 | /* End PBXSourcesBuildPhase section */ 335 | 336 | /* Begin PBXTargetDependency section */ 337 | D83E3E881B7AFB8200BB3F27 /* PBXTargetDependency */ = { 338 | isa = PBXTargetDependency; 339 | target = D83E3E6C1B7AFB8200BB3F27 /* SwiftKeyboardExtension */; 340 | targetProxy = D83E3E871B7AFB8200BB3F27 /* PBXContainerItemProxy */; 341 | }; 342 | D83E3EA11B7AFB9D00BB3F27 /* PBXTargetDependency */ = { 343 | isa = PBXTargetDependency; 344 | target = D83E3E991B7AFB9D00BB3F27 /* Keyboard */; 345 | targetProxy = D83E3EA01B7AFB9D00BB3F27 /* PBXContainerItemProxy */; 346 | }; 347 | /* End PBXTargetDependency section */ 348 | 349 | /* Begin PBXVariantGroup section */ 350 | D83E3E7A1B7AFB8200BB3F27 /* Main.storyboard */ = { 351 | isa = PBXVariantGroup; 352 | children = ( 353 | D83E3E7B1B7AFB8200BB3F27 /* Base */, 354 | ); 355 | name = Main.storyboard; 356 | sourceTree = ""; 357 | }; 358 | D83E3E7F1B7AFB8200BB3F27 /* LaunchScreen.xib */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | D83E3E801B7AFB8200BB3F27 /* Base */, 362 | ); 363 | name = LaunchScreen.xib; 364 | sourceTree = ""; 365 | }; 366 | /* End PBXVariantGroup section */ 367 | 368 | /* Begin XCBuildConfiguration section */ 369 | D83E3E8E1B7AFB8200BB3F27 /* Debug */ = { 370 | isa = XCBuildConfiguration; 371 | buildSettings = { 372 | ALWAYS_SEARCH_USER_PATHS = NO; 373 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 374 | CLANG_CXX_LIBRARY = "libc++"; 375 | CLANG_ENABLE_MODULES = YES; 376 | CLANG_ENABLE_OBJC_ARC = YES; 377 | CLANG_WARN_BOOL_CONVERSION = YES; 378 | CLANG_WARN_CONSTANT_CONVERSION = YES; 379 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 380 | CLANG_WARN_EMPTY_BODY = YES; 381 | CLANG_WARN_ENUM_CONVERSION = YES; 382 | CLANG_WARN_INT_CONVERSION = YES; 383 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 384 | CLANG_WARN_UNREACHABLE_CODE = YES; 385 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 386 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 387 | COPY_PHASE_STRIP = NO; 388 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_DYNAMIC_NO_PIC = NO; 392 | GCC_NO_COMMON_BLOCKS = YES; 393 | GCC_OPTIMIZATION_LEVEL = 0; 394 | GCC_PREPROCESSOR_DEFINITIONS = ( 395 | "DEBUG=1", 396 | "$(inherited)", 397 | ); 398 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 399 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 400 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 401 | GCC_WARN_UNDECLARED_SELECTOR = YES; 402 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 403 | GCC_WARN_UNUSED_FUNCTION = YES; 404 | GCC_WARN_UNUSED_VARIABLE = YES; 405 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 406 | MTL_ENABLE_DEBUG_INFO = YES; 407 | ONLY_ACTIVE_ARCH = YES; 408 | SDKROOT = iphoneos; 409 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 410 | TARGETED_DEVICE_FAMILY = "1,2"; 411 | }; 412 | name = Debug; 413 | }; 414 | D83E3E8F1B7AFB8200BB3F27 /* Release */ = { 415 | isa = XCBuildConfiguration; 416 | buildSettings = { 417 | ALWAYS_SEARCH_USER_PATHS = NO; 418 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 419 | CLANG_CXX_LIBRARY = "libc++"; 420 | CLANG_ENABLE_MODULES = YES; 421 | CLANG_ENABLE_OBJC_ARC = YES; 422 | CLANG_WARN_BOOL_CONVERSION = YES; 423 | CLANG_WARN_CONSTANT_CONVERSION = YES; 424 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 425 | CLANG_WARN_EMPTY_BODY = YES; 426 | CLANG_WARN_ENUM_CONVERSION = YES; 427 | CLANG_WARN_INT_CONVERSION = YES; 428 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 429 | CLANG_WARN_UNREACHABLE_CODE = YES; 430 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 431 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 432 | COPY_PHASE_STRIP = NO; 433 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 434 | ENABLE_NS_ASSERTIONS = NO; 435 | ENABLE_STRICT_OBJC_MSGSEND = YES; 436 | GCC_C_LANGUAGE_STANDARD = gnu99; 437 | GCC_NO_COMMON_BLOCKS = YES; 438 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 439 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 440 | GCC_WARN_UNDECLARED_SELECTOR = YES; 441 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 442 | GCC_WARN_UNUSED_FUNCTION = YES; 443 | GCC_WARN_UNUSED_VARIABLE = YES; 444 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 445 | MTL_ENABLE_DEBUG_INFO = NO; 446 | SDKROOT = iphoneos; 447 | TARGETED_DEVICE_FAMILY = "1,2"; 448 | VALIDATE_PRODUCT = YES; 449 | }; 450 | name = Release; 451 | }; 452 | D83E3E911B7AFB8200BB3F27 /* Debug */ = { 453 | isa = XCBuildConfiguration; 454 | buildSettings = { 455 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 456 | INFOPLIST_FILE = SwiftKeyboardExtension/Info.plist; 457 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 458 | PRODUCT_NAME = "$(TARGET_NAME)"; 459 | }; 460 | name = Debug; 461 | }; 462 | D83E3E921B7AFB8200BB3F27 /* Release */ = { 463 | isa = XCBuildConfiguration; 464 | buildSettings = { 465 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 466 | INFOPLIST_FILE = SwiftKeyboardExtension/Info.plist; 467 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 468 | PRODUCT_NAME = "$(TARGET_NAME)"; 469 | }; 470 | name = Release; 471 | }; 472 | D83E3E941B7AFB8200BB3F27 /* Debug */ = { 473 | isa = XCBuildConfiguration; 474 | buildSettings = { 475 | BUNDLE_LOADER = "$(TEST_HOST)"; 476 | FRAMEWORK_SEARCH_PATHS = ( 477 | "$(SDKROOT)/Developer/Library/Frameworks", 478 | "$(inherited)", 479 | ); 480 | GCC_PREPROCESSOR_DEFINITIONS = ( 481 | "DEBUG=1", 482 | "$(inherited)", 483 | ); 484 | INFOPLIST_FILE = SwiftKeyboardExtensionTests/Info.plist; 485 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 486 | PRODUCT_NAME = "$(TARGET_NAME)"; 487 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftKeyboardExtension.app/SwiftKeyboardExtension"; 488 | }; 489 | name = Debug; 490 | }; 491 | D83E3E951B7AFB8200BB3F27 /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | buildSettings = { 494 | BUNDLE_LOADER = "$(TEST_HOST)"; 495 | FRAMEWORK_SEARCH_PATHS = ( 496 | "$(SDKROOT)/Developer/Library/Frameworks", 497 | "$(inherited)", 498 | ); 499 | INFOPLIST_FILE = SwiftKeyboardExtensionTests/Info.plist; 500 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 501 | PRODUCT_NAME = "$(TARGET_NAME)"; 502 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftKeyboardExtension.app/SwiftKeyboardExtension"; 503 | }; 504 | name = Release; 505 | }; 506 | D83E3EA41B7AFB9D00BB3F27 /* Debug */ = { 507 | isa = XCBuildConfiguration; 508 | buildSettings = { 509 | GCC_PREPROCESSOR_DEFINITIONS = ( 510 | "DEBUG=1", 511 | "$(inherited)", 512 | ); 513 | INFOPLIST_FILE = Keyboard/Info.plist; 514 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; 515 | PRODUCT_NAME = "$(TARGET_NAME)"; 516 | SKIP_INSTALL = YES; 517 | }; 518 | name = Debug; 519 | }; 520 | D83E3EA51B7AFB9D00BB3F27 /* Release */ = { 521 | isa = XCBuildConfiguration; 522 | buildSettings = { 523 | INFOPLIST_FILE = Keyboard/Info.plist; 524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; 525 | PRODUCT_NAME = "$(TARGET_NAME)"; 526 | SKIP_INSTALL = YES; 527 | }; 528 | name = Release; 529 | }; 530 | /* End XCBuildConfiguration section */ 531 | 532 | /* Begin XCConfigurationList section */ 533 | D83E3E681B7AFB8200BB3F27 /* Build configuration list for PBXProject "SwiftKeyboardExtension" */ = { 534 | isa = XCConfigurationList; 535 | buildConfigurations = ( 536 | D83E3E8E1B7AFB8200BB3F27 /* Debug */, 537 | D83E3E8F1B7AFB8200BB3F27 /* Release */, 538 | ); 539 | defaultConfigurationIsVisible = 0; 540 | defaultConfigurationName = Release; 541 | }; 542 | D83E3E901B7AFB8200BB3F27 /* Build configuration list for PBXNativeTarget "SwiftKeyboardExtension" */ = { 543 | isa = XCConfigurationList; 544 | buildConfigurations = ( 545 | D83E3E911B7AFB8200BB3F27 /* Debug */, 546 | D83E3E921B7AFB8200BB3F27 /* Release */, 547 | ); 548 | defaultConfigurationIsVisible = 0; 549 | }; 550 | D83E3E931B7AFB8200BB3F27 /* Build configuration list for PBXNativeTarget "SwiftKeyboardExtensionTests" */ = { 551 | isa = XCConfigurationList; 552 | buildConfigurations = ( 553 | D83E3E941B7AFB8200BB3F27 /* Debug */, 554 | D83E3E951B7AFB8200BB3F27 /* Release */, 555 | ); 556 | defaultConfigurationIsVisible = 0; 557 | }; 558 | D83E3EA31B7AFB9D00BB3F27 /* Build configuration list for PBXNativeTarget "Keyboard" */ = { 559 | isa = XCConfigurationList; 560 | buildConfigurations = ( 561 | D83E3EA41B7AFB9D00BB3F27 /* Debug */, 562 | D83E3EA51B7AFB9D00BB3F27 /* Release */, 563 | ); 564 | defaultConfigurationIsVisible = 0; 565 | }; 566 | /* End XCConfigurationList section */ 567 | }; 568 | rootObject = D83E3E651B7AFB8200BB3F27 /* Project object */; 569 | } 570 | --------------------------------------------------------------------------------