Browse Source

Initial Commit

Tatiana Castro 5 years ago
commit
06507b71b2

+ 608
- 0
EncuestaMarle.xcodeproj/project.pbxproj View File

@@ -0,0 +1,608 @@
1
+// !$*UTF8*$!
2
+{
3
+	archiveVersion = 1;
4
+	classes = {
5
+	};
6
+	objectVersion = 50;
7
+	objects = {
8
+
9
+/* Begin PBXBuildFile section */
10
+		371DA37622621B03006C22EC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371DA37522621B03006C22EC /* AppDelegate.swift */; };
11
+		371DA37822621B03006C22EC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371DA37722621B03006C22EC /* ViewController.swift */; };
12
+		371DA37B22621B03006C22EC /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 371DA37922621B03006C22EC /* Main.storyboard */; };
13
+		371DA37E22621B03006C22EC /* EncuestaMarle.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 371DA37C22621B03006C22EC /* EncuestaMarle.xcdatamodeld */; };
14
+		371DA38022621B06006C22EC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 371DA37F22621B06006C22EC /* Assets.xcassets */; };
15
+		371DA38322621B06006C22EC /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 371DA38122621B06006C22EC /* LaunchScreen.storyboard */; };
16
+		371DA38E22621B06006C22EC /* EncuestaMarleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371DA38D22621B06006C22EC /* EncuestaMarleTests.swift */; };
17
+		371DA39922621B06006C22EC /* EncuestaMarleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 371DA39822621B06006C22EC /* EncuestaMarleUITests.swift */; };
18
+/* End PBXBuildFile section */
19
+
20
+/* Begin PBXContainerItemProxy section */
21
+		371DA38A22621B06006C22EC /* PBXContainerItemProxy */ = {
22
+			isa = PBXContainerItemProxy;
23
+			containerPortal = 371DA36A22621B03006C22EC /* Project object */;
24
+			proxyType = 1;
25
+			remoteGlobalIDString = 371DA37122621B03006C22EC;
26
+			remoteInfo = EncuestaMarle;
27
+		};
28
+		371DA39522621B06006C22EC /* PBXContainerItemProxy */ = {
29
+			isa = PBXContainerItemProxy;
30
+			containerPortal = 371DA36A22621B03006C22EC /* Project object */;
31
+			proxyType = 1;
32
+			remoteGlobalIDString = 371DA37122621B03006C22EC;
33
+			remoteInfo = EncuestaMarle;
34
+		};
35
+/* End PBXContainerItemProxy section */
36
+
37
+/* Begin PBXFileReference section */
38
+		371DA37222621B03006C22EC /* EncuestaMarle.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EncuestaMarle.app; sourceTree = BUILT_PRODUCTS_DIR; };
39
+		371DA37522621B03006C22EC /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
40
+		371DA37722621B03006C22EC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
41
+		371DA37A22621B03006C22EC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
42
+		371DA37D22621B03006C22EC /* EncuestaMarle.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = EncuestaMarle.xcdatamodel; sourceTree = "<group>"; };
43
+		371DA37F22621B06006C22EC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
44
+		371DA38222621B06006C22EC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
45
+		371DA38422621B06006C22EC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
46
+		371DA38922621B06006C22EC /* EncuestaMarleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EncuestaMarleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47
+		371DA38D22621B06006C22EC /* EncuestaMarleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EncuestaMarleTests.swift; sourceTree = "<group>"; };
48
+		371DA38F22621B06006C22EC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
49
+		371DA39422621B06006C22EC /* EncuestaMarleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EncuestaMarleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
50
+		371DA39822621B06006C22EC /* EncuestaMarleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EncuestaMarleUITests.swift; sourceTree = "<group>"; };
51
+		371DA39A22621B06006C22EC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
52
+/* End PBXFileReference section */
53
+
54
+/* Begin PBXFrameworksBuildPhase section */
55
+		371DA36F22621B03006C22EC /* Frameworks */ = {
56
+			isa = PBXFrameworksBuildPhase;
57
+			buildActionMask = 2147483647;
58
+			files = (
59
+			);
60
+			runOnlyForDeploymentPostprocessing = 0;
61
+		};
62
+		371DA38622621B06006C22EC /* Frameworks */ = {
63
+			isa = PBXFrameworksBuildPhase;
64
+			buildActionMask = 2147483647;
65
+			files = (
66
+			);
67
+			runOnlyForDeploymentPostprocessing = 0;
68
+		};
69
+		371DA39122621B06006C22EC /* Frameworks */ = {
70
+			isa = PBXFrameworksBuildPhase;
71
+			buildActionMask = 2147483647;
72
+			files = (
73
+			);
74
+			runOnlyForDeploymentPostprocessing = 0;
75
+		};
76
+/* End PBXFrameworksBuildPhase section */
77
+
78
+/* Begin PBXGroup section */
79
+		371DA36922621B03006C22EC = {
80
+			isa = PBXGroup;
81
+			children = (
82
+				371DA37422621B03006C22EC /* EncuestaMarle */,
83
+				371DA38C22621B06006C22EC /* EncuestaMarleTests */,
84
+				371DA39722621B06006C22EC /* EncuestaMarleUITests */,
85
+				371DA37322621B03006C22EC /* Products */,
86
+			);
87
+			sourceTree = "<group>";
88
+		};
89
+		371DA37322621B03006C22EC /* Products */ = {
90
+			isa = PBXGroup;
91
+			children = (
92
+				371DA37222621B03006C22EC /* EncuestaMarle.app */,
93
+				371DA38922621B06006C22EC /* EncuestaMarleTests.xctest */,
94
+				371DA39422621B06006C22EC /* EncuestaMarleUITests.xctest */,
95
+			);
96
+			name = Products;
97
+			sourceTree = "<group>";
98
+		};
99
+		371DA37422621B03006C22EC /* EncuestaMarle */ = {
100
+			isa = PBXGroup;
101
+			children = (
102
+				371DA37522621B03006C22EC /* AppDelegate.swift */,
103
+				371DA37722621B03006C22EC /* ViewController.swift */,
104
+				371DA37922621B03006C22EC /* Main.storyboard */,
105
+				371DA37F22621B06006C22EC /* Assets.xcassets */,
106
+				371DA38122621B06006C22EC /* LaunchScreen.storyboard */,
107
+				371DA38422621B06006C22EC /* Info.plist */,
108
+				371DA37C22621B03006C22EC /* EncuestaMarle.xcdatamodeld */,
109
+			);
110
+			path = EncuestaMarle;
111
+			sourceTree = "<group>";
112
+		};
113
+		371DA38C22621B06006C22EC /* EncuestaMarleTests */ = {
114
+			isa = PBXGroup;
115
+			children = (
116
+				371DA38D22621B06006C22EC /* EncuestaMarleTests.swift */,
117
+				371DA38F22621B06006C22EC /* Info.plist */,
118
+			);
119
+			path = EncuestaMarleTests;
120
+			sourceTree = "<group>";
121
+		};
122
+		371DA39722621B06006C22EC /* EncuestaMarleUITests */ = {
123
+			isa = PBXGroup;
124
+			children = (
125
+				371DA39822621B06006C22EC /* EncuestaMarleUITests.swift */,
126
+				371DA39A22621B06006C22EC /* Info.plist */,
127
+			);
128
+			path = EncuestaMarleUITests;
129
+			sourceTree = "<group>";
130
+		};
131
+/* End PBXGroup section */
132
+
133
+/* Begin PBXNativeTarget section */
134
+		371DA37122621B03006C22EC /* EncuestaMarle */ = {
135
+			isa = PBXNativeTarget;
136
+			buildConfigurationList = 371DA39D22621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarle" */;
137
+			buildPhases = (
138
+				371DA36E22621B03006C22EC /* Sources */,
139
+				371DA36F22621B03006C22EC /* Frameworks */,
140
+				371DA37022621B03006C22EC /* Resources */,
141
+			);
142
+			buildRules = (
143
+			);
144
+			dependencies = (
145
+			);
146
+			name = EncuestaMarle;
147
+			productName = EncuestaMarle;
148
+			productReference = 371DA37222621B03006C22EC /* EncuestaMarle.app */;
149
+			productType = "com.apple.product-type.application";
150
+		};
151
+		371DA38822621B06006C22EC /* EncuestaMarleTests */ = {
152
+			isa = PBXNativeTarget;
153
+			buildConfigurationList = 371DA3A022621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarleTests" */;
154
+			buildPhases = (
155
+				371DA38522621B06006C22EC /* Sources */,
156
+				371DA38622621B06006C22EC /* Frameworks */,
157
+				371DA38722621B06006C22EC /* Resources */,
158
+			);
159
+			buildRules = (
160
+			);
161
+			dependencies = (
162
+				371DA38B22621B06006C22EC /* PBXTargetDependency */,
163
+			);
164
+			name = EncuestaMarleTests;
165
+			productName = EncuestaMarleTests;
166
+			productReference = 371DA38922621B06006C22EC /* EncuestaMarleTests.xctest */;
167
+			productType = "com.apple.product-type.bundle.unit-test";
168
+		};
169
+		371DA39322621B06006C22EC /* EncuestaMarleUITests */ = {
170
+			isa = PBXNativeTarget;
171
+			buildConfigurationList = 371DA3A322621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarleUITests" */;
172
+			buildPhases = (
173
+				371DA39022621B06006C22EC /* Sources */,
174
+				371DA39122621B06006C22EC /* Frameworks */,
175
+				371DA39222621B06006C22EC /* Resources */,
176
+			);
177
+			buildRules = (
178
+			);
179
+			dependencies = (
180
+				371DA39622621B06006C22EC /* PBXTargetDependency */,
181
+			);
182
+			name = EncuestaMarleUITests;
183
+			productName = EncuestaMarleUITests;
184
+			productReference = 371DA39422621B06006C22EC /* EncuestaMarleUITests.xctest */;
185
+			productType = "com.apple.product-type.bundle.ui-testing";
186
+		};
187
+/* End PBXNativeTarget section */
188
+
189
+/* Begin PBXProject section */
190
+		371DA36A22621B03006C22EC /* Project object */ = {
191
+			isa = PBXProject;
192
+			attributes = {
193
+				LastSwiftUpdateCheck = 1020;
194
+				LastUpgradeCheck = 1020;
195
+				ORGANIZATIONNAME = Marle;
196
+				TargetAttributes = {
197
+					371DA37122621B03006C22EC = {
198
+						CreatedOnToolsVersion = 10.2;
199
+					};
200
+					371DA38822621B06006C22EC = {
201
+						CreatedOnToolsVersion = 10.2;
202
+						TestTargetID = 371DA37122621B03006C22EC;
203
+					};
204
+					371DA39322621B06006C22EC = {
205
+						CreatedOnToolsVersion = 10.2;
206
+						TestTargetID = 371DA37122621B03006C22EC;
207
+					};
208
+				};
209
+			};
210
+			buildConfigurationList = 371DA36D22621B03006C22EC /* Build configuration list for PBXProject "EncuestaMarle" */;
211
+			compatibilityVersion = "Xcode 9.3";
212
+			developmentRegion = en;
213
+			hasScannedForEncodings = 0;
214
+			knownRegions = (
215
+				en,
216
+				Base,
217
+			);
218
+			mainGroup = 371DA36922621B03006C22EC;
219
+			productRefGroup = 371DA37322621B03006C22EC /* Products */;
220
+			projectDirPath = "";
221
+			projectRoot = "";
222
+			targets = (
223
+				371DA37122621B03006C22EC /* EncuestaMarle */,
224
+				371DA38822621B06006C22EC /* EncuestaMarleTests */,
225
+				371DA39322621B06006C22EC /* EncuestaMarleUITests */,
226
+			);
227
+		};
228
+/* End PBXProject section */
229
+
230
+/* Begin PBXResourcesBuildPhase section */
231
+		371DA37022621B03006C22EC /* Resources */ = {
232
+			isa = PBXResourcesBuildPhase;
233
+			buildActionMask = 2147483647;
234
+			files = (
235
+				371DA38322621B06006C22EC /* LaunchScreen.storyboard in Resources */,
236
+				371DA38022621B06006C22EC /* Assets.xcassets in Resources */,
237
+				371DA37B22621B03006C22EC /* Main.storyboard in Resources */,
238
+			);
239
+			runOnlyForDeploymentPostprocessing = 0;
240
+		};
241
+		371DA38722621B06006C22EC /* Resources */ = {
242
+			isa = PBXResourcesBuildPhase;
243
+			buildActionMask = 2147483647;
244
+			files = (
245
+			);
246
+			runOnlyForDeploymentPostprocessing = 0;
247
+		};
248
+		371DA39222621B06006C22EC /* Resources */ = {
249
+			isa = PBXResourcesBuildPhase;
250
+			buildActionMask = 2147483647;
251
+			files = (
252
+			);
253
+			runOnlyForDeploymentPostprocessing = 0;
254
+		};
255
+/* End PBXResourcesBuildPhase section */
256
+
257
+/* Begin PBXSourcesBuildPhase section */
258
+		371DA36E22621B03006C22EC /* Sources */ = {
259
+			isa = PBXSourcesBuildPhase;
260
+			buildActionMask = 2147483647;
261
+			files = (
262
+				371DA37822621B03006C22EC /* ViewController.swift in Sources */,
263
+				371DA37622621B03006C22EC /* AppDelegate.swift in Sources */,
264
+				371DA37E22621B03006C22EC /* EncuestaMarle.xcdatamodeld in Sources */,
265
+			);
266
+			runOnlyForDeploymentPostprocessing = 0;
267
+		};
268
+		371DA38522621B06006C22EC /* Sources */ = {
269
+			isa = PBXSourcesBuildPhase;
270
+			buildActionMask = 2147483647;
271
+			files = (
272
+				371DA38E22621B06006C22EC /* EncuestaMarleTests.swift in Sources */,
273
+			);
274
+			runOnlyForDeploymentPostprocessing = 0;
275
+		};
276
+		371DA39022621B06006C22EC /* Sources */ = {
277
+			isa = PBXSourcesBuildPhase;
278
+			buildActionMask = 2147483647;
279
+			files = (
280
+				371DA39922621B06006C22EC /* EncuestaMarleUITests.swift in Sources */,
281
+			);
282
+			runOnlyForDeploymentPostprocessing = 0;
283
+		};
284
+/* End PBXSourcesBuildPhase section */
285
+
286
+/* Begin PBXTargetDependency section */
287
+		371DA38B22621B06006C22EC /* PBXTargetDependency */ = {
288
+			isa = PBXTargetDependency;
289
+			target = 371DA37122621B03006C22EC /* EncuestaMarle */;
290
+			targetProxy = 371DA38A22621B06006C22EC /* PBXContainerItemProxy */;
291
+		};
292
+		371DA39622621B06006C22EC /* PBXTargetDependency */ = {
293
+			isa = PBXTargetDependency;
294
+			target = 371DA37122621B03006C22EC /* EncuestaMarle */;
295
+			targetProxy = 371DA39522621B06006C22EC /* PBXContainerItemProxy */;
296
+		};
297
+/* End PBXTargetDependency section */
298
+
299
+/* Begin PBXVariantGroup section */
300
+		371DA37922621B03006C22EC /* Main.storyboard */ = {
301
+			isa = PBXVariantGroup;
302
+			children = (
303
+				371DA37A22621B03006C22EC /* Base */,
304
+			);
305
+			name = Main.storyboard;
306
+			sourceTree = "<group>";
307
+		};
308
+		371DA38122621B06006C22EC /* LaunchScreen.storyboard */ = {
309
+			isa = PBXVariantGroup;
310
+			children = (
311
+				371DA38222621B06006C22EC /* Base */,
312
+			);
313
+			name = LaunchScreen.storyboard;
314
+			sourceTree = "<group>";
315
+		};
316
+/* End PBXVariantGroup section */
317
+
318
+/* Begin XCBuildConfiguration section */
319
+		371DA39B22621B06006C22EC /* Debug */ = {
320
+			isa = XCBuildConfiguration;
321
+			buildSettings = {
322
+				ALWAYS_SEARCH_USER_PATHS = NO;
323
+				CLANG_ANALYZER_NONNULL = YES;
324
+				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
325
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
326
+				CLANG_CXX_LIBRARY = "libc++";
327
+				CLANG_ENABLE_MODULES = YES;
328
+				CLANG_ENABLE_OBJC_ARC = YES;
329
+				CLANG_ENABLE_OBJC_WEAK = YES;
330
+				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
331
+				CLANG_WARN_BOOL_CONVERSION = YES;
332
+				CLANG_WARN_COMMA = YES;
333
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
334
+				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
335
+				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
336
+				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
337
+				CLANG_WARN_EMPTY_BODY = YES;
338
+				CLANG_WARN_ENUM_CONVERSION = YES;
339
+				CLANG_WARN_INFINITE_RECURSION = YES;
340
+				CLANG_WARN_INT_CONVERSION = YES;
341
+				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
342
+				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
343
+				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
344
+				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
345
+				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
346
+				CLANG_WARN_STRICT_PROTOTYPES = YES;
347
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
348
+				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
349
+				CLANG_WARN_UNREACHABLE_CODE = YES;
350
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
351
+				CODE_SIGN_IDENTITY = "iPhone Developer";
352
+				COPY_PHASE_STRIP = NO;
353
+				DEBUG_INFORMATION_FORMAT = dwarf;
354
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
355
+				ENABLE_TESTABILITY = YES;
356
+				GCC_C_LANGUAGE_STANDARD = gnu11;
357
+				GCC_DYNAMIC_NO_PIC = NO;
358
+				GCC_NO_COMMON_BLOCKS = YES;
359
+				GCC_OPTIMIZATION_LEVEL = 0;
360
+				GCC_PREPROCESSOR_DEFINITIONS = (
361
+					"DEBUG=1",
362
+					"$(inherited)",
363
+				);
364
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
365
+				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
366
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
367
+				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
368
+				GCC_WARN_UNUSED_FUNCTION = YES;
369
+				GCC_WARN_UNUSED_VARIABLE = YES;
370
+				IPHONEOS_DEPLOYMENT_TARGET = 12.2;
371
+				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
372
+				MTL_FAST_MATH = YES;
373
+				ONLY_ACTIVE_ARCH = YES;
374
+				SDKROOT = iphoneos;
375
+				SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
376
+				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
377
+			};
378
+			name = Debug;
379
+		};
380
+		371DA39C22621B06006C22EC /* Release */ = {
381
+			isa = XCBuildConfiguration;
382
+			buildSettings = {
383
+				ALWAYS_SEARCH_USER_PATHS = NO;
384
+				CLANG_ANALYZER_NONNULL = YES;
385
+				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
386
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
387
+				CLANG_CXX_LIBRARY = "libc++";
388
+				CLANG_ENABLE_MODULES = YES;
389
+				CLANG_ENABLE_OBJC_ARC = YES;
390
+				CLANG_ENABLE_OBJC_WEAK = YES;
391
+				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
392
+				CLANG_WARN_BOOL_CONVERSION = YES;
393
+				CLANG_WARN_COMMA = YES;
394
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
395
+				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
396
+				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
397
+				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
398
+				CLANG_WARN_EMPTY_BODY = YES;
399
+				CLANG_WARN_ENUM_CONVERSION = YES;
400
+				CLANG_WARN_INFINITE_RECURSION = YES;
401
+				CLANG_WARN_INT_CONVERSION = YES;
402
+				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
403
+				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
404
+				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
405
+				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
406
+				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
407
+				CLANG_WARN_STRICT_PROTOTYPES = YES;
408
+				CLANG_WARN_SUSPICIOUS_MOVE = YES;
409
+				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
410
+				CLANG_WARN_UNREACHABLE_CODE = YES;
411
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
412
+				CODE_SIGN_IDENTITY = "iPhone Developer";
413
+				COPY_PHASE_STRIP = NO;
414
+				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
415
+				ENABLE_NS_ASSERTIONS = NO;
416
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
417
+				GCC_C_LANGUAGE_STANDARD = gnu11;
418
+				GCC_NO_COMMON_BLOCKS = YES;
419
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
420
+				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
421
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
422
+				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
423
+				GCC_WARN_UNUSED_FUNCTION = YES;
424
+				GCC_WARN_UNUSED_VARIABLE = YES;
425
+				IPHONEOS_DEPLOYMENT_TARGET = 12.2;
426
+				MTL_ENABLE_DEBUG_INFO = NO;
427
+				MTL_FAST_MATH = YES;
428
+				SDKROOT = iphoneos;
429
+				SWIFT_COMPILATION_MODE = wholemodule;
430
+				SWIFT_OPTIMIZATION_LEVEL = "-O";
431
+				VALIDATE_PRODUCT = YES;
432
+			};
433
+			name = Release;
434
+		};
435
+		371DA39E22621B06006C22EC /* Debug */ = {
436
+			isa = XCBuildConfiguration;
437
+			buildSettings = {
438
+				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
439
+				CODE_SIGN_STYLE = Automatic;
440
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
441
+				INFOPLIST_FILE = EncuestaMarle/Info.plist;
442
+				LD_RUNPATH_SEARCH_PATHS = (
443
+					"$(inherited)",
444
+					"@executable_path/Frameworks",
445
+				);
446
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarle;
447
+				PRODUCT_NAME = "$(TARGET_NAME)";
448
+				SWIFT_VERSION = 5.0;
449
+				TARGETED_DEVICE_FAMILY = "1,2";
450
+			};
451
+			name = Debug;
452
+		};
453
+		371DA39F22621B06006C22EC /* Release */ = {
454
+			isa = XCBuildConfiguration;
455
+			buildSettings = {
456
+				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
457
+				CODE_SIGN_STYLE = Automatic;
458
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
459
+				INFOPLIST_FILE = EncuestaMarle/Info.plist;
460
+				LD_RUNPATH_SEARCH_PATHS = (
461
+					"$(inherited)",
462
+					"@executable_path/Frameworks",
463
+				);
464
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarle;
465
+				PRODUCT_NAME = "$(TARGET_NAME)";
466
+				SWIFT_VERSION = 5.0;
467
+				TARGETED_DEVICE_FAMILY = "1,2";
468
+			};
469
+			name = Release;
470
+		};
471
+		371DA3A122621B06006C22EC /* Debug */ = {
472
+			isa = XCBuildConfiguration;
473
+			buildSettings = {
474
+				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
475
+				BUNDLE_LOADER = "$(TEST_HOST)";
476
+				CODE_SIGN_STYLE = Automatic;
477
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
478
+				INFOPLIST_FILE = EncuestaMarleTests/Info.plist;
479
+				LD_RUNPATH_SEARCH_PATHS = (
480
+					"$(inherited)",
481
+					"@executable_path/Frameworks",
482
+					"@loader_path/Frameworks",
483
+				);
484
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarleTests;
485
+				PRODUCT_NAME = "$(TARGET_NAME)";
486
+				SWIFT_VERSION = 5.0;
487
+				TARGETED_DEVICE_FAMILY = "1,2";
488
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EncuestaMarle.app/EncuestaMarle";
489
+			};
490
+			name = Debug;
491
+		};
492
+		371DA3A222621B06006C22EC /* Release */ = {
493
+			isa = XCBuildConfiguration;
494
+			buildSettings = {
495
+				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
496
+				BUNDLE_LOADER = "$(TEST_HOST)";
497
+				CODE_SIGN_STYLE = Automatic;
498
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
499
+				INFOPLIST_FILE = EncuestaMarleTests/Info.plist;
500
+				LD_RUNPATH_SEARCH_PATHS = (
501
+					"$(inherited)",
502
+					"@executable_path/Frameworks",
503
+					"@loader_path/Frameworks",
504
+				);
505
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarleTests;
506
+				PRODUCT_NAME = "$(TARGET_NAME)";
507
+				SWIFT_VERSION = 5.0;
508
+				TARGETED_DEVICE_FAMILY = "1,2";
509
+				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EncuestaMarle.app/EncuestaMarle";
510
+			};
511
+			name = Release;
512
+		};
513
+		371DA3A422621B06006C22EC /* Debug */ = {
514
+			isa = XCBuildConfiguration;
515
+			buildSettings = {
516
+				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
517
+				CODE_SIGN_STYLE = Automatic;
518
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
519
+				INFOPLIST_FILE = EncuestaMarleUITests/Info.plist;
520
+				LD_RUNPATH_SEARCH_PATHS = (
521
+					"$(inherited)",
522
+					"@executable_path/Frameworks",
523
+					"@loader_path/Frameworks",
524
+				);
525
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarleUITests;
526
+				PRODUCT_NAME = "$(TARGET_NAME)";
527
+				SWIFT_VERSION = 5.0;
528
+				TARGETED_DEVICE_FAMILY = "1,2";
529
+				TEST_TARGET_NAME = EncuestaMarle;
530
+			};
531
+			name = Debug;
532
+		};
533
+		371DA3A522621B06006C22EC /* Release */ = {
534
+			isa = XCBuildConfiguration;
535
+			buildSettings = {
536
+				ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
537
+				CODE_SIGN_STYLE = Automatic;
538
+				DEVELOPMENT_TEAM = 44GX6RVC5R;
539
+				INFOPLIST_FILE = EncuestaMarleUITests/Info.plist;
540
+				LD_RUNPATH_SEARCH_PATHS = (
541
+					"$(inherited)",
542
+					"@executable_path/Frameworks",
543
+					"@loader_path/Frameworks",
544
+				);
545
+				PRODUCT_BUNDLE_IDENTIFIER = MARLEApp.EncuestaMarleUITests;
546
+				PRODUCT_NAME = "$(TARGET_NAME)";
547
+				SWIFT_VERSION = 5.0;
548
+				TARGETED_DEVICE_FAMILY = "1,2";
549
+				TEST_TARGET_NAME = EncuestaMarle;
550
+			};
551
+			name = Release;
552
+		};
553
+/* End XCBuildConfiguration section */
554
+
555
+/* Begin XCConfigurationList section */
556
+		371DA36D22621B03006C22EC /* Build configuration list for PBXProject "EncuestaMarle" */ = {
557
+			isa = XCConfigurationList;
558
+			buildConfigurations = (
559
+				371DA39B22621B06006C22EC /* Debug */,
560
+				371DA39C22621B06006C22EC /* Release */,
561
+			);
562
+			defaultConfigurationIsVisible = 0;
563
+			defaultConfigurationName = Release;
564
+		};
565
+		371DA39D22621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarle" */ = {
566
+			isa = XCConfigurationList;
567
+			buildConfigurations = (
568
+				371DA39E22621B06006C22EC /* Debug */,
569
+				371DA39F22621B06006C22EC /* Release */,
570
+			);
571
+			defaultConfigurationIsVisible = 0;
572
+			defaultConfigurationName = Release;
573
+		};
574
+		371DA3A022621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarleTests" */ = {
575
+			isa = XCConfigurationList;
576
+			buildConfigurations = (
577
+				371DA3A122621B06006C22EC /* Debug */,
578
+				371DA3A222621B06006C22EC /* Release */,
579
+			);
580
+			defaultConfigurationIsVisible = 0;
581
+			defaultConfigurationName = Release;
582
+		};
583
+		371DA3A322621B06006C22EC /* Build configuration list for PBXNativeTarget "EncuestaMarleUITests" */ = {
584
+			isa = XCConfigurationList;
585
+			buildConfigurations = (
586
+				371DA3A422621B06006C22EC /* Debug */,
587
+				371DA3A522621B06006C22EC /* Release */,
588
+			);
589
+			defaultConfigurationIsVisible = 0;
590
+			defaultConfigurationName = Release;
591
+		};
592
+/* End XCConfigurationList section */
593
+
594
+/* Begin XCVersionGroup section */
595
+		371DA37C22621B03006C22EC /* EncuestaMarle.xcdatamodeld */ = {
596
+			isa = XCVersionGroup;
597
+			children = (
598
+				371DA37D22621B03006C22EC /* EncuestaMarle.xcdatamodel */,
599
+			);
600
+			currentVersion = 371DA37D22621B03006C22EC /* EncuestaMarle.xcdatamodel */;
601
+			path = EncuestaMarle.xcdatamodeld;
602
+			sourceTree = "<group>";
603
+			versionGroupType = wrapper.xcdatamodel;
604
+		};
605
+/* End XCVersionGroup section */
606
+	};
607
+	rootObject = 371DA36A22621B03006C22EC /* Project object */;
608
+}

+ 7
- 0
EncuestaMarle.xcodeproj/project.xcworkspace/contents.xcworkspacedata View File

@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<Workspace
3
+   version = "1.0">
4
+   <FileRef
5
+      location = "self:EncuestaMarle.xcodeproj">
6
+   </FileRef>
7
+</Workspace>

+ 8
- 0
EncuestaMarle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist View File

@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>IDEDidComputeMac32BitWarning</key>
6
+	<true/>
7
+</dict>
8
+</plist>

+ 14
- 0
EncuestaMarle.xcodeproj/xcuserdata/tatianacastro.xcuserdatad/xcschemes/xcschememanagement.plist View File

@@ -0,0 +1,14 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>SchemeUserState</key>
6
+	<dict>
7
+		<key>EncuestaMarle.xcscheme_^#shared#^_</key>
8
+		<dict>
9
+			<key>orderHint</key>
10
+			<integer>0</integer>
11
+		</dict>
12
+	</dict>
13
+</dict>
14
+</plist>

+ 93
- 0
EncuestaMarle/AppDelegate.swift View File

@@ -0,0 +1,93 @@
1
+//
2
+//  AppDelegate.swift
3
+//  EncuestaMarle
4
+//
5
+//  Created by Tatiana Castro on 4/13/19.
6
+//  Copyright © 2019 Marle. All rights reserved.
7
+//
8
+
9
+import UIKit
10
+import CoreData
11
+
12
+@UIApplicationMain
13
+class AppDelegate: UIResponder, UIApplicationDelegate {
14
+
15
+    var window: UIWindow?
16
+
17
+
18
+    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
19
+        // Override point for customization after application launch.
20
+        return true
21
+    }
22
+
23
+    func applicationWillResignActive(_ application: UIApplication) {
24
+        // 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.
25
+        // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
26
+    }
27
+
28
+    func applicationDidEnterBackground(_ application: UIApplication) {
29
+        // 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.
30
+        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
31
+    }
32
+
33
+    func applicationWillEnterForeground(_ application: UIApplication) {
34
+        // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
35
+    }
36
+
37
+    func applicationDidBecomeActive(_ application: UIApplication) {
38
+        // 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.
39
+    }
40
+
41
+    func applicationWillTerminate(_ application: UIApplication) {
42
+        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
43
+        // Saves changes in the application's managed object context before the application terminates.
44
+        self.saveContext()
45
+    }
46
+
47
+    // MARK: - Core Data stack
48
+
49
+    lazy var persistentContainer: NSPersistentContainer = {
50
+        /*
51
+         The persistent container for the application. This implementation
52
+         creates and returns a container, having loaded the store for the
53
+         application to it. This property is optional since there are legitimate
54
+         error conditions that could cause the creation of the store to fail.
55
+        */
56
+        let container = NSPersistentContainer(name: "EncuestaMarle")
57
+        container.loadPersistentStores(completionHandler: { (storeDescription, error) in
58
+            if let error = error as NSError? {
59
+                // Replace this implementation with code to handle the error appropriately.
60
+                // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
61
+                 
62
+                /*
63
+                 Typical reasons for an error here include:
64
+                 * The parent directory does not exist, cannot be created, or disallows writing.
65
+                 * The persistent store is not accessible, due to permissions or data protection when the device is locked.
66
+                 * The device is out of space.
67
+                 * The store could not be migrated to the current model version.
68
+                 Check the error message to determine what the actual problem was.
69
+                 */
70
+                fatalError("Unresolved error \(error), \(error.userInfo)")
71
+            }
72
+        })
73
+        return container
74
+    }()
75
+
76
+    // MARK: - Core Data Saving support
77
+
78
+    func saveContext () {
79
+        let context = persistentContainer.viewContext
80
+        if context.hasChanges {
81
+            do {
82
+                try context.save()
83
+            } catch {
84
+                // Replace this implementation with code to handle the error appropriately.
85
+                // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
86
+                let nserror = error as NSError
87
+                fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
88
+            }
89
+        }
90
+    }
91
+
92
+}
93
+

+ 98
- 0
EncuestaMarle/Assets.xcassets/AppIcon.appiconset/Contents.json View File

@@ -0,0 +1,98 @@
1
+{
2
+  "images" : [
3
+    {
4
+      "idiom" : "iphone",
5
+      "size" : "20x20",
6
+      "scale" : "2x"
7
+    },
8
+    {
9
+      "idiom" : "iphone",
10
+      "size" : "20x20",
11
+      "scale" : "3x"
12
+    },
13
+    {
14
+      "idiom" : "iphone",
15
+      "size" : "29x29",
16
+      "scale" : "2x"
17
+    },
18
+    {
19
+      "idiom" : "iphone",
20
+      "size" : "29x29",
21
+      "scale" : "3x"
22
+    },
23
+    {
24
+      "idiom" : "iphone",
25
+      "size" : "40x40",
26
+      "scale" : "2x"
27
+    },
28
+    {
29
+      "idiom" : "iphone",
30
+      "size" : "40x40",
31
+      "scale" : "3x"
32
+    },
33
+    {
34
+      "idiom" : "iphone",
35
+      "size" : "60x60",
36
+      "scale" : "2x"
37
+    },
38
+    {
39
+      "idiom" : "iphone",
40
+      "size" : "60x60",
41
+      "scale" : "3x"
42
+    },
43
+    {
44
+      "idiom" : "ipad",
45
+      "size" : "20x20",
46
+      "scale" : "1x"
47
+    },
48
+    {
49
+      "idiom" : "ipad",
50
+      "size" : "20x20",
51
+      "scale" : "2x"
52
+    },
53
+    {
54
+      "idiom" : "ipad",
55
+      "size" : "29x29",
56
+      "scale" : "1x"
57
+    },
58
+    {
59
+      "idiom" : "ipad",
60
+      "size" : "29x29",
61
+      "scale" : "2x"
62
+    },
63
+    {
64
+      "idiom" : "ipad",
65
+      "size" : "40x40",
66
+      "scale" : "1x"
67
+    },
68
+    {
69
+      "idiom" : "ipad",
70
+      "size" : "40x40",
71
+      "scale" : "2x"
72
+    },
73
+    {
74
+      "idiom" : "ipad",
75
+      "size" : "76x76",
76
+      "scale" : "1x"
77
+    },
78
+    {
79
+      "idiom" : "ipad",
80
+      "size" : "76x76",
81
+      "scale" : "2x"
82
+    },
83
+    {
84
+      "idiom" : "ipad",
85
+      "size" : "83.5x83.5",
86
+      "scale" : "2x"
87
+    },
88
+    {
89
+      "idiom" : "ios-marketing",
90
+      "size" : "1024x1024",
91
+      "scale" : "1x"
92
+    }
93
+  ],
94
+  "info" : {
95
+    "version" : 1,
96
+    "author" : "xcode"
97
+  }
98
+}

+ 6
- 0
EncuestaMarle/Assets.xcassets/Contents.json View File

@@ -0,0 +1,6 @@
1
+{
2
+  "info" : {
3
+    "version" : 1,
4
+    "author" : "xcode"
5
+  }
6
+}

+ 25
- 0
EncuestaMarle/Base.lproj/LaunchScreen.storyboard View File

@@ -0,0 +1,25 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
3
+    <dependencies>
4
+        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
5
+        <capability name="Safe area layout guides" minToolsVersion="9.0"/>
6
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
7
+    </dependencies>
8
+    <scenes>
9
+        <!--View Controller-->
10
+        <scene sceneID="EHf-IW-A2E">
11
+            <objects>
12
+                <viewController id="01J-lp-oVM" sceneMemberID="viewController">
13
+                    <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
14
+                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
15
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
16
+                        <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
17
+                        <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
18
+                    </view>
19
+                </viewController>
20
+                <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
21
+            </objects>
22
+            <point key="canvasLocation" x="53" y="375"/>
23
+        </scene>
24
+    </scenes>
25
+</document>

+ 24
- 0
EncuestaMarle/Base.lproj/Main.storyboard View File

@@ -0,0 +1,24 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
3
+    <dependencies>
4
+        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
5
+        <capability name="Safe area layout guides" minToolsVersion="9.0"/>
6
+        <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
7
+    </dependencies>
8
+    <scenes>
9
+        <!--View Controller-->
10
+        <scene sceneID="tne-QT-ifu">
11
+            <objects>
12
+                <viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
13
+                    <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
14
+                        <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
15
+                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
16
+                        <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
17
+                        <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
18
+                    </view>
19
+                </viewController>
20
+                <placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
21
+            </objects>
22
+        </scene>
23
+    </scenes>
24
+</document>

+ 8
- 0
EncuestaMarle/EncuestaMarle.xcdatamodeld/.xccurrentversion View File

@@ -0,0 +1,8 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>_XCCurrentVersionName</key>
6
+	<string>EncuestaMarle.xcdatamodel</string>
7
+</dict>
8
+</plist>

+ 4
- 0
EncuestaMarle/EncuestaMarle.xcdatamodeld/EncuestaMarle.xcdatamodel/contents View File

@@ -0,0 +1,4 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2
+<model type="com.apple.IDECoreDataModeler.DataModel" documentVersion="1.0" lastSavedToolsVersion="1" systemVersion="11A491" minimumToolsVersion="Automatic" sourceLanguage="Swift" userDefinedModelVersionIdentifier="">
3
+    <elements/>
4
+</model>

+ 45
- 0
EncuestaMarle/Info.plist View File

@@ -0,0 +1,45 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>CFBundleDevelopmentRegion</key>
6
+	<string>$(DEVELOPMENT_LANGUAGE)</string>
7
+	<key>CFBundleExecutable</key>
8
+	<string>$(EXECUTABLE_NAME)</string>
9
+	<key>CFBundleIdentifier</key>
10
+	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+	<key>CFBundleInfoDictionaryVersion</key>
12
+	<string>6.0</string>
13
+	<key>CFBundleName</key>
14
+	<string>$(PRODUCT_NAME)</string>
15
+	<key>CFBundlePackageType</key>
16
+	<string>APPL</string>
17
+	<key>CFBundleShortVersionString</key>
18
+	<string>1.0</string>
19
+	<key>CFBundleVersion</key>
20
+	<string>1</string>
21
+	<key>LSRequiresIPhoneOS</key>
22
+	<true/>
23
+	<key>UILaunchStoryboardName</key>
24
+	<string>LaunchScreen</string>
25
+	<key>UIMainStoryboardFile</key>
26
+	<string>Main</string>
27
+	<key>UIRequiredDeviceCapabilities</key>
28
+	<array>
29
+		<string>armv7</string>
30
+	</array>
31
+	<key>UISupportedInterfaceOrientations</key>
32
+	<array>
33
+		<string>UIInterfaceOrientationPortrait</string>
34
+		<string>UIInterfaceOrientationLandscapeLeft</string>
35
+		<string>UIInterfaceOrientationLandscapeRight</string>
36
+	</array>
37
+	<key>UISupportedInterfaceOrientations~ipad</key>
38
+	<array>
39
+		<string>UIInterfaceOrientationPortrait</string>
40
+		<string>UIInterfaceOrientationPortraitUpsideDown</string>
41
+		<string>UIInterfaceOrientationLandscapeLeft</string>
42
+		<string>UIInterfaceOrientationLandscapeRight</string>
43
+	</array>
44
+</dict>
45
+</plist>

+ 20
- 0
EncuestaMarle/ViewController.swift View File

@@ -0,0 +1,20 @@
1
+//
2
+//  ViewController.swift
3
+//  EncuestaMarle
4
+//
5
+//  Created by Tatiana Castro on 4/13/19.
6
+//  Copyright © 2019 Marle. All rights reserved.
7
+//
8
+
9
+import UIKit
10
+
11
+class ViewController: UIViewController {
12
+
13
+    override func viewDidLoad() {
14
+        super.viewDidLoad()
15
+        // Do any additional setup after loading the view.
16
+    }
17
+
18
+
19
+}
20
+

+ 34
- 0
EncuestaMarleTests/EncuestaMarleTests.swift View File

@@ -0,0 +1,34 @@
1
+//
2
+//  EncuestaMarleTests.swift
3
+//  EncuestaMarleTests
4
+//
5
+//  Created by Tatiana Castro on 4/13/19.
6
+//  Copyright © 2019 Marle. All rights reserved.
7
+//
8
+
9
+import XCTest
10
+@testable import EncuestaMarle
11
+
12
+class EncuestaMarleTests: XCTestCase {
13
+
14
+    override func setUp() {
15
+        // Put setup code here. This method is called before the invocation of each test method in the class.
16
+    }
17
+
18
+    override func tearDown() {
19
+        // Put teardown code here. This method is called after the invocation of each test method in the class.
20
+    }
21
+
22
+    func testExample() {
23
+        // This is an example of a functional test case.
24
+        // Use XCTAssert and related functions to verify your tests produce the correct results.
25
+    }
26
+
27
+    func testPerformanceExample() {
28
+        // This is an example of a performance test case.
29
+        self.measure {
30
+            // Put the code you want to measure the time of here.
31
+        }
32
+    }
33
+
34
+}

+ 22
- 0
EncuestaMarleTests/Info.plist View File

@@ -0,0 +1,22 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>CFBundleDevelopmentRegion</key>
6
+	<string>$(DEVELOPMENT_LANGUAGE)</string>
7
+	<key>CFBundleExecutable</key>
8
+	<string>$(EXECUTABLE_NAME)</string>
9
+	<key>CFBundleIdentifier</key>
10
+	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+	<key>CFBundleInfoDictionaryVersion</key>
12
+	<string>6.0</string>
13
+	<key>CFBundleName</key>
14
+	<string>$(PRODUCT_NAME)</string>
15
+	<key>CFBundlePackageType</key>
16
+	<string>BNDL</string>
17
+	<key>CFBundleShortVersionString</key>
18
+	<string>1.0</string>
19
+	<key>CFBundleVersion</key>
20
+	<string>1</string>
21
+</dict>
22
+</plist>

+ 34
- 0
EncuestaMarleUITests/EncuestaMarleUITests.swift View File

@@ -0,0 +1,34 @@
1
+//
2
+//  EncuestaMarleUITests.swift
3
+//  EncuestaMarleUITests
4
+//
5
+//  Created by Tatiana Castro on 4/13/19.
6
+//  Copyright © 2019 Marle. All rights reserved.
7
+//
8
+
9
+import XCTest
10
+
11
+class EncuestaMarleUITests: XCTestCase {
12
+
13
+    override func setUp() {
14
+        // Put setup code here. This method is called before the invocation of each test method in the class.
15
+
16
+        // In UI tests it is usually best to stop immediately when a failure occurs.
17
+        continueAfterFailure = false
18
+
19
+        // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
20
+        XCUIApplication().launch()
21
+
22
+        // 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.
23
+    }
24
+
25
+    override func tearDown() {
26
+        // Put teardown code here. This method is called after the invocation of each test method in the class.
27
+    }
28
+
29
+    func testExample() {
30
+        // Use recording to get started writing UI tests.
31
+        // Use XCTAssert and related functions to verify your tests produce the correct results.
32
+    }
33
+
34
+}

+ 22
- 0
EncuestaMarleUITests/Info.plist View File

@@ -0,0 +1,22 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>CFBundleDevelopmentRegion</key>
6
+	<string>$(DEVELOPMENT_LANGUAGE)</string>
7
+	<key>CFBundleExecutable</key>
8
+	<string>$(EXECUTABLE_NAME)</string>
9
+	<key>CFBundleIdentifier</key>
10
+	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+	<key>CFBundleInfoDictionaryVersion</key>
12
+	<string>6.0</string>
13
+	<key>CFBundleName</key>
14
+	<string>$(PRODUCT_NAME)</string>
15
+	<key>CFBundlePackageType</key>
16
+	<string>BNDL</string>
17
+	<key>CFBundleShortVersionString</key>
18
+	<string>1.0</string>
19
+	<key>CFBundleVersion</key>
20
+	<string>1</string>
21
+</dict>
22
+</plist>