├── AwesomeDictionary.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
├── xcuserdata
│ └── cor.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── AwesomeDictionary.xcscheme
└── project.pbxproj
├── AwesomeDictionary
├── Extensions.swift
├── WordDefinition.swift
├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── DetailViewController.swift
├── Info.plist
├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
├── AppDelegate.swift
└── ViewController.swift
├── .gitignore
├── AwesomeDictionaryTests
├── Info.plist
└── AwesomeDictionaryTests.swift
└── AwesomeDictionaryUITests
├── Info.plist
└── AwesomeDictionaryUITests.swift
/AwesomeDictionary.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/AwesomeDictionary/Extensions.swift:
--------------------------------------------------------------------------------
1 | //
2 | // Extensions.swift
3 | // AwesomeDictionary
4 | //
5 | // Created by Cor Pruijs on 30-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | extension UILabel {
12 | func allowMultipleLines() {
13 | self.lineBreakMode = .ByWordWrapping
14 | self.numberOfLines = 0
15 | }
16 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Created by https://www.gitignore.io/api/xcode
2 |
3 | ### Xcode ###
4 | # Xcode
5 | #
6 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7 |
8 | ## Build generated
9 | build/
10 | DerivedData
11 |
12 | ## Various settings
13 | *.pbxuser
14 | !default.pbxuser
15 | *.mode1v3
16 | !default.mode1v3
17 | *.mode2v3
18 | !default.mode2v3
19 | *.perspectivev3
20 | !default.perspectivev3
21 | xcuserdata
22 |
23 | ## Other
24 | *.xccheckout
25 | *.moved-aside
26 | *.xcuserstate
27 |
28 |
--------------------------------------------------------------------------------
/AwesomeDictionary/WordDefinition.swift:
--------------------------------------------------------------------------------
1 | //
2 | // WordDefinition.swift
3 | // AwesomeDictionary
4 | //
5 | // Created by Cor Pruijs on 29-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import Foundation
10 |
11 | struct WordDefinition {
12 | let word: String
13 | let definition: String
14 | let example: String?
15 |
16 | init(word: String, definition: String, example: String?) {
17 | self.word = word
18 | self.definition = definition
19 | self.example = example
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/AwesomeDictionaryTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
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 |
--------------------------------------------------------------------------------
/AwesomeDictionaryUITests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
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 |
--------------------------------------------------------------------------------
/AwesomeDictionary.xcodeproj/xcuserdata/cor.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | AwesomeDictionary.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 87F9C2761BE2515800C21D08
16 |
17 | primary
18 |
19 |
20 | 87F9C28A1BE2515900C21D08
21 |
22 | primary
23 |
24 |
25 | 87F9C2951BE2515900C21D08
26 |
27 | primary
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/AwesomeDictionaryTests/AwesomeDictionaryTests.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AwesomeDictionaryTests.swift
3 | // AwesomeDictionaryTests
4 | //
5 | // Created by Cor Pruijs on 29-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import XCTest
10 | @testable import AwesomeDictionary
11 |
12 | class AwesomeDictionaryTests: 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 | // Use XCTAssert and related functions to verify your tests produce the correct results.
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 |
--------------------------------------------------------------------------------
/AwesomeDictionary/Assets.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 | }
--------------------------------------------------------------------------------
/AwesomeDictionaryUITests/AwesomeDictionaryUITests.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AwesomeDictionaryUITests.swift
3 | // AwesomeDictionaryUITests
4 | //
5 | // Created by Cor Pruijs on 29-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import XCTest
10 |
11 | class AwesomeDictionaryUITests: XCTestCase {
12 |
13 | override func setUp() {
14 | super.setUp()
15 |
16 | // Put setup code here. This method is called before the invocation of each test method in the class.
17 |
18 | // In UI tests it is usually best to stop immediately when a failure occurs.
19 | continueAfterFailure = false
20 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
21 | XCUIApplication().launch()
22 |
23 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
24 | }
25 |
26 | override func tearDown() {
27 | // Put teardown code here. This method is called after the invocation of each test method in the class.
28 | super.tearDown()
29 | }
30 |
31 | func testExample() {
32 | // Use recording to get started writing UI tests.
33 | // Use XCTAssert and related functions to verify your tests produce the correct results.
34 | }
35 |
36 | }
37 |
--------------------------------------------------------------------------------
/AwesomeDictionary/DetailViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // DetailViewController.swift
3 | // AwesomeDictionary
4 | //
5 | // Created by Cor Pruijs on 30-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class DetailViewController: UIViewController {
12 |
13 | @IBOutlet weak var wordLabel: UILabel!
14 | @IBOutlet weak var definitionLabel: UILabel!
15 | @IBOutlet weak var exampleLabel: UILabel!
16 | var wordDefinition: WordDefinition!
17 |
18 |
19 | override func viewDidLoad() {
20 | super.viewDidLoad()
21 |
22 | definitionLabel.allowMultipleLines()
23 | exampleLabel.allowMultipleLines()
24 |
25 | updateLabels()
26 | }
27 |
28 | override func didReceiveMemoryWarning() {
29 | super.didReceiveMemoryWarning()
30 | // Dispose of any resources that can be recreated.
31 | }
32 |
33 | func updateLabels() {
34 | wordLabel.text = wordDefinition.word
35 | definitionLabel.text = wordDefinition.definition
36 | exampleLabel.text = wordDefinition.example
37 | }
38 |
39 |
40 | /*
41 | // MARK: - Navigation
42 |
43 | // In a storyboard-based application, you will often want to do a little preparation before navigation
44 | override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
45 | // Get the new view controller using segue.destinationViewController.
46 | // Pass the selected object to the new view controller.
47 | }
48 | */
49 |
50 | }
51 |
--------------------------------------------------------------------------------
/AwesomeDictionary/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | nl
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | Woordenboek
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 |
--------------------------------------------------------------------------------
/AwesomeDictionary/Base.lproj/LaunchScreen.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 |
--------------------------------------------------------------------------------
/AwesomeDictionary/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // AwesomeDictionary
4 | //
5 | // Created by Cor Pruijs on 29-10-15.
6 | // Copyright © 2015 Cor Pruijs. 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 |
--------------------------------------------------------------------------------
/AwesomeDictionary.xcodeproj/xcuserdata/cor.xcuserdatad/xcschemes/AwesomeDictionary.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
43 |
49 |
50 |
51 |
52 |
53 |
59 |
60 |
61 |
62 |
63 |
64 |
74 |
76 |
82 |
83 |
84 |
85 |
86 |
87 |
93 |
95 |
101 |
102 |
103 |
104 |
106 |
107 |
110 |
111 |
112 |
--------------------------------------------------------------------------------
/AwesomeDictionary/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // AwesomeDictionary
4 | //
5 | // Created by Cor Pruijs on 29-10-15.
6 | // Copyright © 2015 Cor Pruijs. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | class ViewController: UITableViewController, UISearchBarDelegate, UISearchDisplayDelegate {
12 |
13 | var wordDefinitions = [WordDefinition]()
14 | var filteredWordDefinitions = [WordDefinition]()
15 |
16 | override func viewDidLoad() {
17 | super.viewDidLoad()
18 | // Do any additional setup after loading the view, typically from a nib.
19 | let sampleWords = [
20 | WordDefinition(word: "Verderkijker",
21 | definition: "Gewoon een verekijker maar dan logisch",
22 | example: "Cor keek door zijn verderkijker"),
23 | WordDefinition(word: "Inschatsysteem",
24 | definition: "Het systeem in je hoofd dat verantwoordleijk is voor dingen inschatten",
25 | example: "Ite jouw inschatsysteem is echt slecht"),
26 | WordDefinition(word: "Adoptienier",
27 | definition: "Een geadopteerde nier",
28 | example: "Wouter: Wat is een adoptienier?")
29 | ]
30 |
31 | self.wordDefinitions = sampleWords
32 | sortWordDefinitions()
33 | }
34 |
35 | func sortWordDefinitions() {
36 | wordDefinitions.sortInPlace {
37 | $0.word < $1.word
38 | }
39 | }
40 |
41 | override func didReceiveMemoryWarning() {
42 | super.didReceiveMemoryWarning()
43 | // Dispose of any resources that can be recreated.
44 | }
45 |
46 | override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
47 |
48 | return tableView == self.searchDisplayController!.searchResultsTableView ? filteredWordDefinitions.count : wordDefinitions.count
49 | }
50 |
51 | override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
52 | let cell = self.tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
53 |
54 | // use the filtered results if the user is searching
55 | let wordDefinition = tableView == self.searchDisplayController!.searchResultsTableView ?
56 | filteredWordDefinitions[indexPath.row] : wordDefinitions[indexPath.row]
57 |
58 | cell.textLabel?.text = wordDefinition.word
59 | return cell
60 | }
61 |
62 | func filterContentForSearchText(searchText: String) {
63 | self.filteredWordDefinitions = self.wordDefinitions.filter() {
64 | (wordDefinition: WordDefinition) -> Bool in
65 | let stringMatch = wordDefinition.word.uppercaseString.rangeOfString(searchText.uppercaseString)
66 | return stringMatch != nil // if it isn't nil, then there's a match
67 | }
68 | }
69 |
70 | func searchDisplayController(controller: UISearchDisplayController, shouldReloadTableForSearchString searchString: String?) -> Bool {
71 | self.filterContentForSearchText(searchString!)
72 | return true
73 | }
74 |
75 | override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
76 | self.performSegueWithIdentifier("wordDefinitionDetail", sender: tableView)
77 | }
78 |
79 | override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
80 | if segue.identifier == "wordDefinitionDetail" {
81 | let wordDefinitionDetailViewController = segue.destinationViewController as! DetailViewController
82 | if sender as! UITableView == self.searchDisplayController!.searchResultsTableView {
83 | let indexPath = self.searchDisplayController!.searchResultsTableView.indexPathForSelectedRow!
84 | let destinationTitle = self.filteredWordDefinitions[indexPath.row].word
85 | wordDefinitionDetailViewController.title = destinationTitle
86 | wordDefinitionDetailViewController.wordDefinition = self.filteredWordDefinitions[indexPath.row]
87 | } else {
88 | let indexPath = self.tableView.indexPathForSelectedRow!
89 | let destinationTitle = self.wordDefinitions[indexPath.row].word
90 | wordDefinitionDetailViewController.title = destinationTitle
91 | wordDefinitionDetailViewController.wordDefinition = self.wordDefinitions[indexPath.row]
92 | }
93 | }
94 | }
95 |
96 | func searchDisplayController(controller: UISearchDisplayController, shouldReloadTableForSearchScope searchOption: Int) -> Bool {
97 | self.filterContentForSearchText(self.searchDisplayController!.searchBar.text!)
98 | return true
99 | }
100 |
101 | }
102 |
103 |
--------------------------------------------------------------------------------
/AwesomeDictionary/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 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
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 |
84 |
85 |
86 |
87 |
88 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
--------------------------------------------------------------------------------
/AwesomeDictionary.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 872964B21BE38590006C5B3E /* DetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872964B11BE38590006C5B3E /* DetailViewController.swift */; };
11 | 872964B41BE3CD54006C5B3E /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872964B31BE3CD54006C5B3E /* Extensions.swift */; };
12 | 879939801BE25CED00A34E29 /* WordDefinition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8799397F1BE25CED00A34E29 /* WordDefinition.swift */; };
13 | 87F9C27B1BE2515800C21D08 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F9C27A1BE2515800C21D08 /* AppDelegate.swift */; };
14 | 87F9C27D1BE2515800C21D08 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F9C27C1BE2515800C21D08 /* ViewController.swift */; };
15 | 87F9C2801BE2515800C21D08 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 87F9C27E1BE2515800C21D08 /* Main.storyboard */; };
16 | 87F9C2821BE2515800C21D08 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 87F9C2811BE2515800C21D08 /* Assets.xcassets */; };
17 | 87F9C2851BE2515800C21D08 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 87F9C2831BE2515800C21D08 /* LaunchScreen.storyboard */; };
18 | 87F9C2901BE2515900C21D08 /* AwesomeDictionaryTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F9C28F1BE2515900C21D08 /* AwesomeDictionaryTests.swift */; };
19 | 87F9C29B1BE2515900C21D08 /* AwesomeDictionaryUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F9C29A1BE2515900C21D08 /* AwesomeDictionaryUITests.swift */; };
20 | /* End PBXBuildFile section */
21 |
22 | /* Begin PBXContainerItemProxy section */
23 | 87F9C28C1BE2515900C21D08 /* PBXContainerItemProxy */ = {
24 | isa = PBXContainerItemProxy;
25 | containerPortal = 87F9C26F1BE2515800C21D08 /* Project object */;
26 | proxyType = 1;
27 | remoteGlobalIDString = 87F9C2761BE2515800C21D08;
28 | remoteInfo = AwesomeDictionary;
29 | };
30 | 87F9C2971BE2515900C21D08 /* PBXContainerItemProxy */ = {
31 | isa = PBXContainerItemProxy;
32 | containerPortal = 87F9C26F1BE2515800C21D08 /* Project object */;
33 | proxyType = 1;
34 | remoteGlobalIDString = 87F9C2761BE2515800C21D08;
35 | remoteInfo = AwesomeDictionary;
36 | };
37 | /* End PBXContainerItemProxy section */
38 |
39 | /* Begin PBXFileReference section */
40 | 872964B11BE38590006C5B3E /* DetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DetailViewController.swift; sourceTree = ""; };
41 | 872964B31BE3CD54006C5B3E /* Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = ""; };
42 | 8799397F1BE25CED00A34E29 /* WordDefinition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WordDefinition.swift; sourceTree = ""; };
43 | 87F9C2771BE2515800C21D08 /* AwesomeDictionary.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AwesomeDictionary.app; sourceTree = BUILT_PRODUCTS_DIR; };
44 | 87F9C27A1BE2515800C21D08 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
45 | 87F9C27C1BE2515800C21D08 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
46 | 87F9C27F1BE2515800C21D08 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
47 | 87F9C2811BE2515800C21D08 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
48 | 87F9C2841BE2515800C21D08 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
49 | 87F9C2861BE2515800C21D08 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
50 | 87F9C28B1BE2515900C21D08 /* AwesomeDictionaryTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AwesomeDictionaryTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
51 | 87F9C28F1BE2515900C21D08 /* AwesomeDictionaryTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AwesomeDictionaryTests.swift; sourceTree = ""; };
52 | 87F9C2911BE2515900C21D08 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
53 | 87F9C2961BE2515900C21D08 /* AwesomeDictionaryUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AwesomeDictionaryUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
54 | 87F9C29A1BE2515900C21D08 /* AwesomeDictionaryUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AwesomeDictionaryUITests.swift; sourceTree = ""; };
55 | 87F9C29C1BE2515900C21D08 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
56 | /* End PBXFileReference section */
57 |
58 | /* Begin PBXFrameworksBuildPhase section */
59 | 87F9C2741BE2515800C21D08 /* Frameworks */ = {
60 | isa = PBXFrameworksBuildPhase;
61 | buildActionMask = 2147483647;
62 | files = (
63 | );
64 | runOnlyForDeploymentPostprocessing = 0;
65 | };
66 | 87F9C2881BE2515900C21D08 /* Frameworks */ = {
67 | isa = PBXFrameworksBuildPhase;
68 | buildActionMask = 2147483647;
69 | files = (
70 | );
71 | runOnlyForDeploymentPostprocessing = 0;
72 | };
73 | 87F9C2931BE2515900C21D08 /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | );
78 | runOnlyForDeploymentPostprocessing = 0;
79 | };
80 | /* End PBXFrameworksBuildPhase section */
81 |
82 | /* Begin PBXGroup section */
83 | 87F9C26E1BE2515800C21D08 = {
84 | isa = PBXGroup;
85 | children = (
86 | 87F9C2791BE2515800C21D08 /* AwesomeDictionary */,
87 | 87F9C28E1BE2515900C21D08 /* AwesomeDictionaryTests */,
88 | 87F9C2991BE2515900C21D08 /* AwesomeDictionaryUITests */,
89 | 87F9C2781BE2515800C21D08 /* Products */,
90 | );
91 | sourceTree = "";
92 | };
93 | 87F9C2781BE2515800C21D08 /* Products */ = {
94 | isa = PBXGroup;
95 | children = (
96 | 87F9C2771BE2515800C21D08 /* AwesomeDictionary.app */,
97 | 87F9C28B1BE2515900C21D08 /* AwesomeDictionaryTests.xctest */,
98 | 87F9C2961BE2515900C21D08 /* AwesomeDictionaryUITests.xctest */,
99 | );
100 | name = Products;
101 | sourceTree = "";
102 | };
103 | 87F9C2791BE2515800C21D08 /* AwesomeDictionary */ = {
104 | isa = PBXGroup;
105 | children = (
106 | 87F9C27A1BE2515800C21D08 /* AppDelegate.swift */,
107 | 87F9C27C1BE2515800C21D08 /* ViewController.swift */,
108 | 8799397F1BE25CED00A34E29 /* WordDefinition.swift */,
109 | 87F9C27E1BE2515800C21D08 /* Main.storyboard */,
110 | 872964B31BE3CD54006C5B3E /* Extensions.swift */,
111 | 87F9C2811BE2515800C21D08 /* Assets.xcassets */,
112 | 87F9C2831BE2515800C21D08 /* LaunchScreen.storyboard */,
113 | 87F9C2861BE2515800C21D08 /* Info.plist */,
114 | 872964B11BE38590006C5B3E /* DetailViewController.swift */,
115 | );
116 | path = AwesomeDictionary;
117 | sourceTree = "";
118 | };
119 | 87F9C28E1BE2515900C21D08 /* AwesomeDictionaryTests */ = {
120 | isa = PBXGroup;
121 | children = (
122 | 87F9C28F1BE2515900C21D08 /* AwesomeDictionaryTests.swift */,
123 | 87F9C2911BE2515900C21D08 /* Info.plist */,
124 | );
125 | path = AwesomeDictionaryTests;
126 | sourceTree = "";
127 | };
128 | 87F9C2991BE2515900C21D08 /* AwesomeDictionaryUITests */ = {
129 | isa = PBXGroup;
130 | children = (
131 | 87F9C29A1BE2515900C21D08 /* AwesomeDictionaryUITests.swift */,
132 | 87F9C29C1BE2515900C21D08 /* Info.plist */,
133 | );
134 | path = AwesomeDictionaryUITests;
135 | sourceTree = "";
136 | };
137 | /* End PBXGroup section */
138 |
139 | /* Begin PBXNativeTarget section */
140 | 87F9C2761BE2515800C21D08 /* AwesomeDictionary */ = {
141 | isa = PBXNativeTarget;
142 | buildConfigurationList = 87F9C29F1BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionary" */;
143 | buildPhases = (
144 | 87F9C2731BE2515800C21D08 /* Sources */,
145 | 87F9C2741BE2515800C21D08 /* Frameworks */,
146 | 87F9C2751BE2515800C21D08 /* Resources */,
147 | );
148 | buildRules = (
149 | );
150 | dependencies = (
151 | );
152 | name = AwesomeDictionary;
153 | productName = AwesomeDictionary;
154 | productReference = 87F9C2771BE2515800C21D08 /* AwesomeDictionary.app */;
155 | productType = "com.apple.product-type.application";
156 | };
157 | 87F9C28A1BE2515900C21D08 /* AwesomeDictionaryTests */ = {
158 | isa = PBXNativeTarget;
159 | buildConfigurationList = 87F9C2A21BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionaryTests" */;
160 | buildPhases = (
161 | 87F9C2871BE2515900C21D08 /* Sources */,
162 | 87F9C2881BE2515900C21D08 /* Frameworks */,
163 | 87F9C2891BE2515900C21D08 /* Resources */,
164 | );
165 | buildRules = (
166 | );
167 | dependencies = (
168 | 87F9C28D1BE2515900C21D08 /* PBXTargetDependency */,
169 | );
170 | name = AwesomeDictionaryTests;
171 | productName = AwesomeDictionaryTests;
172 | productReference = 87F9C28B1BE2515900C21D08 /* AwesomeDictionaryTests.xctest */;
173 | productType = "com.apple.product-type.bundle.unit-test";
174 | };
175 | 87F9C2951BE2515900C21D08 /* AwesomeDictionaryUITests */ = {
176 | isa = PBXNativeTarget;
177 | buildConfigurationList = 87F9C2A51BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionaryUITests" */;
178 | buildPhases = (
179 | 87F9C2921BE2515900C21D08 /* Sources */,
180 | 87F9C2931BE2515900C21D08 /* Frameworks */,
181 | 87F9C2941BE2515900C21D08 /* Resources */,
182 | );
183 | buildRules = (
184 | );
185 | dependencies = (
186 | 87F9C2981BE2515900C21D08 /* PBXTargetDependency */,
187 | );
188 | name = AwesomeDictionaryUITests;
189 | productName = AwesomeDictionaryUITests;
190 | productReference = 87F9C2961BE2515900C21D08 /* AwesomeDictionaryUITests.xctest */;
191 | productType = "com.apple.product-type.bundle.ui-testing";
192 | };
193 | /* End PBXNativeTarget section */
194 |
195 | /* Begin PBXProject section */
196 | 87F9C26F1BE2515800C21D08 /* Project object */ = {
197 | isa = PBXProject;
198 | attributes = {
199 | LastSwiftUpdateCheck = 0710;
200 | LastUpgradeCheck = 0710;
201 | ORGANIZATIONNAME = "Cor Pruijs";
202 | TargetAttributes = {
203 | 87F9C2761BE2515800C21D08 = {
204 | CreatedOnToolsVersion = 7.1;
205 | DevelopmentTeam = 9RS3Y87D23;
206 | };
207 | 87F9C28A1BE2515900C21D08 = {
208 | CreatedOnToolsVersion = 7.1;
209 | TestTargetID = 87F9C2761BE2515800C21D08;
210 | };
211 | 87F9C2951BE2515900C21D08 = {
212 | CreatedOnToolsVersion = 7.1;
213 | TestTargetID = 87F9C2761BE2515800C21D08;
214 | };
215 | };
216 | };
217 | buildConfigurationList = 87F9C2721BE2515800C21D08 /* Build configuration list for PBXProject "AwesomeDictionary" */;
218 | compatibilityVersion = "Xcode 3.2";
219 | developmentRegion = English;
220 | hasScannedForEncodings = 0;
221 | knownRegions = (
222 | en,
223 | Base,
224 | );
225 | mainGroup = 87F9C26E1BE2515800C21D08;
226 | productRefGroup = 87F9C2781BE2515800C21D08 /* Products */;
227 | projectDirPath = "";
228 | projectRoot = "";
229 | targets = (
230 | 87F9C2761BE2515800C21D08 /* AwesomeDictionary */,
231 | 87F9C28A1BE2515900C21D08 /* AwesomeDictionaryTests */,
232 | 87F9C2951BE2515900C21D08 /* AwesomeDictionaryUITests */,
233 | );
234 | };
235 | /* End PBXProject section */
236 |
237 | /* Begin PBXResourcesBuildPhase section */
238 | 87F9C2751BE2515800C21D08 /* Resources */ = {
239 | isa = PBXResourcesBuildPhase;
240 | buildActionMask = 2147483647;
241 | files = (
242 | 87F9C2851BE2515800C21D08 /* LaunchScreen.storyboard in Resources */,
243 | 87F9C2821BE2515800C21D08 /* Assets.xcassets in Resources */,
244 | 87F9C2801BE2515800C21D08 /* Main.storyboard in Resources */,
245 | );
246 | runOnlyForDeploymentPostprocessing = 0;
247 | };
248 | 87F9C2891BE2515900C21D08 /* Resources */ = {
249 | isa = PBXResourcesBuildPhase;
250 | buildActionMask = 2147483647;
251 | files = (
252 | );
253 | runOnlyForDeploymentPostprocessing = 0;
254 | };
255 | 87F9C2941BE2515900C21D08 /* Resources */ = {
256 | isa = PBXResourcesBuildPhase;
257 | buildActionMask = 2147483647;
258 | files = (
259 | );
260 | runOnlyForDeploymentPostprocessing = 0;
261 | };
262 | /* End PBXResourcesBuildPhase section */
263 |
264 | /* Begin PBXSourcesBuildPhase section */
265 | 87F9C2731BE2515800C21D08 /* Sources */ = {
266 | isa = PBXSourcesBuildPhase;
267 | buildActionMask = 2147483647;
268 | files = (
269 | 872964B41BE3CD54006C5B3E /* Extensions.swift in Sources */,
270 | 879939801BE25CED00A34E29 /* WordDefinition.swift in Sources */,
271 | 87F9C27D1BE2515800C21D08 /* ViewController.swift in Sources */,
272 | 87F9C27B1BE2515800C21D08 /* AppDelegate.swift in Sources */,
273 | 872964B21BE38590006C5B3E /* DetailViewController.swift in Sources */,
274 | );
275 | runOnlyForDeploymentPostprocessing = 0;
276 | };
277 | 87F9C2871BE2515900C21D08 /* Sources */ = {
278 | isa = PBXSourcesBuildPhase;
279 | buildActionMask = 2147483647;
280 | files = (
281 | 87F9C2901BE2515900C21D08 /* AwesomeDictionaryTests.swift in Sources */,
282 | );
283 | runOnlyForDeploymentPostprocessing = 0;
284 | };
285 | 87F9C2921BE2515900C21D08 /* Sources */ = {
286 | isa = PBXSourcesBuildPhase;
287 | buildActionMask = 2147483647;
288 | files = (
289 | 87F9C29B1BE2515900C21D08 /* AwesomeDictionaryUITests.swift in Sources */,
290 | );
291 | runOnlyForDeploymentPostprocessing = 0;
292 | };
293 | /* End PBXSourcesBuildPhase section */
294 |
295 | /* Begin PBXTargetDependency section */
296 | 87F9C28D1BE2515900C21D08 /* PBXTargetDependency */ = {
297 | isa = PBXTargetDependency;
298 | target = 87F9C2761BE2515800C21D08 /* AwesomeDictionary */;
299 | targetProxy = 87F9C28C1BE2515900C21D08 /* PBXContainerItemProxy */;
300 | };
301 | 87F9C2981BE2515900C21D08 /* PBXTargetDependency */ = {
302 | isa = PBXTargetDependency;
303 | target = 87F9C2761BE2515800C21D08 /* AwesomeDictionary */;
304 | targetProxy = 87F9C2971BE2515900C21D08 /* PBXContainerItemProxy */;
305 | };
306 | /* End PBXTargetDependency section */
307 |
308 | /* Begin PBXVariantGroup section */
309 | 87F9C27E1BE2515800C21D08 /* Main.storyboard */ = {
310 | isa = PBXVariantGroup;
311 | children = (
312 | 87F9C27F1BE2515800C21D08 /* Base */,
313 | );
314 | name = Main.storyboard;
315 | sourceTree = "";
316 | };
317 | 87F9C2831BE2515800C21D08 /* LaunchScreen.storyboard */ = {
318 | isa = PBXVariantGroup;
319 | children = (
320 | 87F9C2841BE2515800C21D08 /* Base */,
321 | );
322 | name = LaunchScreen.storyboard;
323 | sourceTree = "";
324 | };
325 | /* End PBXVariantGroup section */
326 |
327 | /* Begin XCBuildConfiguration section */
328 | 87F9C29D1BE2515900C21D08 /* Debug */ = {
329 | isa = XCBuildConfiguration;
330 | buildSettings = {
331 | ALWAYS_SEARCH_USER_PATHS = NO;
332 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
333 | CLANG_CXX_LIBRARY = "libc++";
334 | CLANG_ENABLE_MODULES = YES;
335 | CLANG_ENABLE_OBJC_ARC = YES;
336 | CLANG_WARN_BOOL_CONVERSION = YES;
337 | CLANG_WARN_CONSTANT_CONVERSION = YES;
338 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
339 | CLANG_WARN_EMPTY_BODY = YES;
340 | CLANG_WARN_ENUM_CONVERSION = YES;
341 | CLANG_WARN_INT_CONVERSION = YES;
342 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
343 | CLANG_WARN_UNREACHABLE_CODE = YES;
344 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
345 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
346 | COPY_PHASE_STRIP = NO;
347 | DEBUG_INFORMATION_FORMAT = dwarf;
348 | ENABLE_STRICT_OBJC_MSGSEND = YES;
349 | ENABLE_TESTABILITY = YES;
350 | GCC_C_LANGUAGE_STANDARD = gnu99;
351 | GCC_DYNAMIC_NO_PIC = NO;
352 | GCC_NO_COMMON_BLOCKS = YES;
353 | GCC_OPTIMIZATION_LEVEL = 0;
354 | GCC_PREPROCESSOR_DEFINITIONS = (
355 | "DEBUG=1",
356 | "$(inherited)",
357 | );
358 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
359 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
360 | GCC_WARN_UNDECLARED_SELECTOR = YES;
361 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
362 | GCC_WARN_UNUSED_FUNCTION = YES;
363 | GCC_WARN_UNUSED_VARIABLE = YES;
364 | IPHONEOS_DEPLOYMENT_TARGET = 9.1;
365 | MTL_ENABLE_DEBUG_INFO = YES;
366 | ONLY_ACTIVE_ARCH = YES;
367 | SDKROOT = iphoneos;
368 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
369 | TARGETED_DEVICE_FAMILY = "1,2";
370 | };
371 | name = Debug;
372 | };
373 | 87F9C29E1BE2515900C21D08 /* Release */ = {
374 | isa = XCBuildConfiguration;
375 | buildSettings = {
376 | ALWAYS_SEARCH_USER_PATHS = NO;
377 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
378 | CLANG_CXX_LIBRARY = "libc++";
379 | CLANG_ENABLE_MODULES = YES;
380 | CLANG_ENABLE_OBJC_ARC = YES;
381 | CLANG_WARN_BOOL_CONVERSION = YES;
382 | CLANG_WARN_CONSTANT_CONVERSION = YES;
383 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
384 | CLANG_WARN_EMPTY_BODY = YES;
385 | CLANG_WARN_ENUM_CONVERSION = YES;
386 | CLANG_WARN_INT_CONVERSION = YES;
387 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
388 | CLANG_WARN_UNREACHABLE_CODE = YES;
389 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
390 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
391 | COPY_PHASE_STRIP = NO;
392 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
393 | ENABLE_NS_ASSERTIONS = NO;
394 | ENABLE_STRICT_OBJC_MSGSEND = YES;
395 | GCC_C_LANGUAGE_STANDARD = gnu99;
396 | GCC_NO_COMMON_BLOCKS = YES;
397 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
398 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
399 | GCC_WARN_UNDECLARED_SELECTOR = YES;
400 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
401 | GCC_WARN_UNUSED_FUNCTION = YES;
402 | GCC_WARN_UNUSED_VARIABLE = YES;
403 | IPHONEOS_DEPLOYMENT_TARGET = 9.1;
404 | MTL_ENABLE_DEBUG_INFO = NO;
405 | SDKROOT = iphoneos;
406 | TARGETED_DEVICE_FAMILY = "1,2";
407 | VALIDATE_PRODUCT = YES;
408 | };
409 | name = Release;
410 | };
411 | 87F9C2A01BE2515900C21D08 /* Debug */ = {
412 | isa = XCBuildConfiguration;
413 | buildSettings = {
414 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
415 | CODE_SIGN_IDENTITY = "iPhone Developer";
416 | INFOPLIST_FILE = AwesomeDictionary/Info.plist;
417 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
418 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionary;
419 | PRODUCT_NAME = "$(TARGET_NAME)";
420 | };
421 | name = Debug;
422 | };
423 | 87F9C2A11BE2515900C21D08 /* Release */ = {
424 | isa = XCBuildConfiguration;
425 | buildSettings = {
426 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
427 | CODE_SIGN_IDENTITY = "iPhone Developer";
428 | INFOPLIST_FILE = AwesomeDictionary/Info.plist;
429 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
430 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionary;
431 | PRODUCT_NAME = "$(TARGET_NAME)";
432 | };
433 | name = Release;
434 | };
435 | 87F9C2A31BE2515900C21D08 /* Debug */ = {
436 | isa = XCBuildConfiguration;
437 | buildSettings = {
438 | BUNDLE_LOADER = "$(TEST_HOST)";
439 | INFOPLIST_FILE = AwesomeDictionaryTests/Info.plist;
440 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
441 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionaryTests;
442 | PRODUCT_NAME = "$(TARGET_NAME)";
443 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AwesomeDictionary.app/AwesomeDictionary";
444 | };
445 | name = Debug;
446 | };
447 | 87F9C2A41BE2515900C21D08 /* Release */ = {
448 | isa = XCBuildConfiguration;
449 | buildSettings = {
450 | BUNDLE_LOADER = "$(TEST_HOST)";
451 | INFOPLIST_FILE = AwesomeDictionaryTests/Info.plist;
452 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
453 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionaryTests;
454 | PRODUCT_NAME = "$(TARGET_NAME)";
455 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AwesomeDictionary.app/AwesomeDictionary";
456 | };
457 | name = Release;
458 | };
459 | 87F9C2A61BE2515900C21D08 /* Debug */ = {
460 | isa = XCBuildConfiguration;
461 | buildSettings = {
462 | INFOPLIST_FILE = AwesomeDictionaryUITests/Info.plist;
463 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
464 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionaryUITests;
465 | PRODUCT_NAME = "$(TARGET_NAME)";
466 | TEST_TARGET_NAME = AwesomeDictionary;
467 | USES_XCTRUNNER = YES;
468 | };
469 | name = Debug;
470 | };
471 | 87F9C2A71BE2515900C21D08 /* Release */ = {
472 | isa = XCBuildConfiguration;
473 | buildSettings = {
474 | INFOPLIST_FILE = AwesomeDictionaryUITests/Info.plist;
475 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
476 | PRODUCT_BUNDLE_IDENTIFIER = self.edu.AwesomeDictionaryUITests;
477 | PRODUCT_NAME = "$(TARGET_NAME)";
478 | TEST_TARGET_NAME = AwesomeDictionary;
479 | USES_XCTRUNNER = YES;
480 | };
481 | name = Release;
482 | };
483 | /* End XCBuildConfiguration section */
484 |
485 | /* Begin XCConfigurationList section */
486 | 87F9C2721BE2515800C21D08 /* Build configuration list for PBXProject "AwesomeDictionary" */ = {
487 | isa = XCConfigurationList;
488 | buildConfigurations = (
489 | 87F9C29D1BE2515900C21D08 /* Debug */,
490 | 87F9C29E1BE2515900C21D08 /* Release */,
491 | );
492 | defaultConfigurationIsVisible = 0;
493 | defaultConfigurationName = Release;
494 | };
495 | 87F9C29F1BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionary" */ = {
496 | isa = XCConfigurationList;
497 | buildConfigurations = (
498 | 87F9C2A01BE2515900C21D08 /* Debug */,
499 | 87F9C2A11BE2515900C21D08 /* Release */,
500 | );
501 | defaultConfigurationIsVisible = 0;
502 | defaultConfigurationName = Release;
503 | };
504 | 87F9C2A21BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionaryTests" */ = {
505 | isa = XCConfigurationList;
506 | buildConfigurations = (
507 | 87F9C2A31BE2515900C21D08 /* Debug */,
508 | 87F9C2A41BE2515900C21D08 /* Release */,
509 | );
510 | defaultConfigurationIsVisible = 0;
511 | defaultConfigurationName = Release;
512 | };
513 | 87F9C2A51BE2515900C21D08 /* Build configuration list for PBXNativeTarget "AwesomeDictionaryUITests" */ = {
514 | isa = XCConfigurationList;
515 | buildConfigurations = (
516 | 87F9C2A61BE2515900C21D08 /* Debug */,
517 | 87F9C2A71BE2515900C21D08 /* Release */,
518 | );
519 | defaultConfigurationIsVisible = 0;
520 | defaultConfigurationName = Release;
521 | };
522 | /* End XCConfigurationList section */
523 | };
524 | rootObject = 87F9C26F1BE2515800C21D08 /* Project object */;
525 | }
526 |
--------------------------------------------------------------------------------