iCuke 0.4.12 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. data/Rakefile +3 -3
  2. data/VERSION +1 -1
  3. data/app/AlertsViewController.h +59 -0
  4. data/app/AlertsViewController.m +341 -0
  5. data/app/AppDelegate.h +60 -0
  6. data/app/AppDelegate.m +101 -0
  7. data/app/ButtonsViewController.h +80 -0
  8. data/app/ButtonsViewController.m +448 -0
  9. data/app/Constants.h +58 -0
  10. data/app/ControlsViewController.h +72 -0
  11. data/app/ControlsViewController.m +379 -0
  12. data/app/ImagesViewController.h +62 -0
  13. data/app/ImagesViewController.m +137 -0
  14. data/app/{iCuke/iCuke-Info.plist → Info.plist} +4 -4
  15. data/app/MainViewController.h +57 -0
  16. data/app/MainViewController.m +262 -0
  17. data/app/Picker/CustomPickerDataSource.h +55 -0
  18. data/app/Picker/CustomPickerDataSource.m +135 -0
  19. data/app/Picker/CustomView.h +62 -0
  20. data/app/Picker/CustomView.m +119 -0
  21. data/app/PickerViewController.h +88 -0
  22. data/app/PickerViewController.m +402 -0
  23. data/app/Prefix.pch +5 -0
  24. data/app/ReadMe.txt +82 -0
  25. data/app/SearchBarController.h +58 -0
  26. data/app/SearchBarController.m +105 -0
  27. data/app/SegmentViewController.h +54 -0
  28. data/app/SegmentViewController.m +195 -0
  29. data/app/TextFieldController.h +67 -0
  30. data/app/TextFieldController.m +342 -0
  31. data/app/TextViewController.h +57 -0
  32. data/app/TextViewController.m +164 -0
  33. data/app/ToolbarViewController.h +74 -0
  34. data/app/ToolbarViewController.m +303 -0
  35. data/app/TransitionViewController.h +64 -0
  36. data/app/TransitionViewController.m +178 -0
  37. data/app/UICatalog.xcodeproj/project.pbxproj +615 -0
  38. data/app/WebViewController.h +57 -0
  39. data/app/WebViewController.m +173 -0
  40. data/app/en.lproj/AlertsViewController.xib +144 -0
  41. data/app/en.lproj/ButtonsViewController.xib +147 -0
  42. data/app/en.lproj/ControlsViewController.xib +147 -0
  43. data/app/en.lproj/ImagesViewController.xib +264 -0
  44. data/app/en.lproj/Localizable.strings +41 -0
  45. data/app/en.lproj/MainWindow.xib +306 -0
  46. data/app/en.lproj/PickerViewController.xib +415 -0
  47. data/app/en.lproj/SearchBarController.xib +142 -0
  48. data/app/en.lproj/SegmentViewController.xib +143 -0
  49. data/app/en.lproj/TextFieldController.xib +167 -0
  50. data/app/en.lproj/TextViewController.xib +149 -0
  51. data/app/en.lproj/ToolbarViewController.xib +491 -0
  52. data/app/en.lproj/TransitionViewController.xib +255 -0
  53. data/app/en.lproj/WebViewController.xib +141 -0
  54. data/app/images/12-6AM.png +0 -0
  55. data/app/images/12-6PM.png +0 -0
  56. data/app/images/6-12AM.png +0 -0
  57. data/app/images/6-12PM.png +0 -0
  58. data/app/images/Default.png +0 -0
  59. data/app/images/Icon.png +0 -0
  60. data/app/images/UIButton_custom.png +0 -0
  61. data/app/images/blueButton.png +0 -0
  62. data/app/images/orangeslide.png +0 -0
  63. data/app/images/scene1.jpg +0 -0
  64. data/app/images/scene2.jpg +0 -0
  65. data/app/images/scene3.jpg +0 -0
  66. data/app/images/scene4.jpg +0 -0
  67. data/app/images/scene5.jpg +0 -0
  68. data/app/images/segment_check.png +0 -0
  69. data/app/images/segment_search.png +0 -0
  70. data/app/images/segment_tools.png +0 -0
  71. data/app/images/slider_ball.png +0 -0
  72. data/app/images/whiteButton.png +0 -0
  73. data/app/images/yellowslide.png +0 -0
  74. data/app/main.m +58 -0
  75. data/ext/iCuke/DefaultsResponse.m +0 -1
  76. data/ext/iCuke/EventResponse.m +9 -1
  77. data/ext/iCuke/Rakefile +1 -1
  78. data/ext/iCuke/Recorder.h +3 -1
  79. data/ext/iCuke/Recorder.m +10 -5
  80. data/ext/iCuke/RecorderResponse.h +1 -0
  81. data/ext/iCuke/RecorderResponse.m +10 -1
  82. data/ext/iCuke/Viewer.m +5 -6
  83. data/ext/iCuke/iCukeHTTPServer.m +1 -1
  84. data/ext/iCuke/iCukeServer.m +24 -7
  85. data/ext/iCuke/libicuke.dylib +0 -0
  86. data/features/uicatalog.feature +20 -0
  87. data/iCuke.gemspec +81 -24
  88. data/lib/icuke/com.apple.Accessibility.plist +0 -0
  89. data/lib/icuke/core_ext.rb +26 -0
  90. data/lib/icuke/cucumber.rb +20 -12
  91. data/lib/icuke/headless.rb +55 -0
  92. data/lib/icuke/simulator.rb +7 -129
  93. data/lib/icuke/xcode.rb +136 -0
  94. metadata +82 -25
  95. data/app/iCuke/Classes/FlipsideView.h +0 -13
  96. data/app/iCuke/Classes/FlipsideView.m +0 -32
  97. data/app/iCuke/Classes/FlipsideViewController.h +0 -25
  98. data/app/iCuke/Classes/FlipsideViewController.m +0 -54
  99. data/app/iCuke/Classes/MainView.h +0 -15
  100. data/app/iCuke/Classes/MainView.m +0 -32
  101. data/app/iCuke/Classes/MainViewController.h +0 -16
  102. data/app/iCuke/Classes/MainViewController.m +0 -86
  103. data/app/iCuke/Classes/iCukeAppDelegate.h +0 -20
  104. data/app/iCuke/Classes/iCukeAppDelegate.m +0 -33
  105. data/app/iCuke/FlipsideView.xib +0 -444
  106. data/app/iCuke/MainView.xib +0 -520
  107. data/app/iCuke/MainWindow.xib +0 -355
  108. data/app/iCuke/SniffingView.h +0 -20
  109. data/app/iCuke/SniffingView.m +0 -191
  110. data/app/iCuke/iCuke.xcodeproj/project.pbxproj +0 -313
  111. data/app/iCuke/iCuke_Prefix.pch +0 -14
  112. data/app/iCuke/main.m +0 -16
  113. data/features/icuke.feature +0 -17
  114. /data/app/{iCuke/.gitignore → .gitignore} +0 -0
@@ -1,444 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
3
- <data>
4
- <int key="IBDocument.SystemTarget">784</int>
5
- <string key="IBDocument.SystemVersion">10C540</string>
6
- <string key="IBDocument.InterfaceBuilderVersion">740</string>
7
- <string key="IBDocument.AppKitVersion">1038.25</string>
8
- <string key="IBDocument.HIToolboxVersion">458.00</string>
9
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
- <string key="NS.object.0">62</string>
12
- </object>
13
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
14
- <bool key="EncodedWithXMLCoder">YES</bool>
15
- <integer value="40"/>
16
- </object>
17
- <object class="NSArray" key="IBDocument.PluginDependencies">
18
- <bool key="EncodedWithXMLCoder">YES</bool>
19
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
20
- </object>
21
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
22
- <bool key="EncodedWithXMLCoder">YES</bool>
23
- <object class="NSArray" key="dict.sortedKeys" id="0">
24
- <bool key="EncodedWithXMLCoder">YES</bool>
25
- </object>
26
- <object class="NSMutableArray" key="dict.values">
27
- <bool key="EncodedWithXMLCoder">YES</bool>
28
- </object>
29
- </object>
30
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
31
- <bool key="EncodedWithXMLCoder">YES</bool>
32
- <object class="IBProxyObject" id="372490531">
33
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
34
- </object>
35
- <object class="IBProxyObject" id="340535442">
36
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
37
- </object>
38
- <object class="IBUIView" id="249263867">
39
- <reference key="NSNextResponder"/>
40
- <int key="NSvFlags">274</int>
41
- <object class="NSMutableArray" key="NSSubviews">
42
- <bool key="EncodedWithXMLCoder">YES</bool>
43
- <object class="IBUINavigationBar" id="871675769">
44
- <reference key="NSNextResponder" ref="249263867"/>
45
- <int key="NSvFlags">290</int>
46
- <string key="NSFrameSize">{320, 44}</string>
47
- <reference key="NSSuperview" ref="249263867"/>
48
- <bool key="IBUIOpaque">NO</bool>
49
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
50
- <int key="IBUIBarStyle">1</int>
51
- <object class="NSArray" key="IBUIItems">
52
- <bool key="EncodedWithXMLCoder">YES</bool>
53
- <object class="IBUINavigationItem" id="553200710">
54
- <reference key="IBUINavigationBar" ref="871675769"/>
55
- <string key="IBUITitle">About</string>
56
- <object class="IBUIBarButtonItem" key="IBUILeftBarButtonItem" id="854562692">
57
- <int key="IBUIStyle">1</int>
58
- <int key="IBUISystemItemIdentifier">0</int>
59
- </object>
60
- </object>
61
- </object>
62
- </object>
63
- </object>
64
- <string key="NSFrameSize">{320, 460}</string>
65
- <reference key="NSSuperview"/>
66
- <object class="NSColor" key="IBUIBackgroundColor">
67
- <int key="NSColorSpace">3</int>
68
- <bytes key="NSWhite">MC4yNQA</bytes>
69
- <object class="NSColorSpace" key="NSCustomColorSpace">
70
- <int key="NSID">2</int>
71
- </object>
72
- </object>
73
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
74
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics">
75
- <int key="IBUIStatusBarStyle">2</int>
76
- </object>
77
- </object>
78
- </object>
79
- <object class="IBObjectContainer" key="IBDocument.Objects">
80
- <object class="NSMutableArray" key="connectionRecords">
81
- <bool key="EncodedWithXMLCoder">YES</bool>
82
- <object class="IBConnectionRecord">
83
- <object class="IBCocoaTouchOutletConnection" key="connection">
84
- <string key="label">view</string>
85
- <reference key="source" ref="372490531"/>
86
- <reference key="destination" ref="249263867"/>
87
- </object>
88
- <int key="connectionID">41</int>
89
- </object>
90
- <object class="IBConnectionRecord">
91
- <object class="IBCocoaTouchEventConnection" key="connection">
92
- <string key="label">done</string>
93
- <reference key="source" ref="854562692"/>
94
- <reference key="destination" ref="372490531"/>
95
- </object>
96
- <int key="connectionID">45</int>
97
- </object>
98
- </object>
99
- <object class="IBMutableOrderedSet" key="objectRecords">
100
- <object class="NSArray" key="orderedObjects">
101
- <bool key="EncodedWithXMLCoder">YES</bool>
102
- <object class="IBObjectRecord">
103
- <int key="objectID">0</int>
104
- <reference key="object" ref="0"/>
105
- <reference key="children" ref="1000"/>
106
- <nil key="parent"/>
107
- </object>
108
- <object class="IBObjectRecord">
109
- <int key="objectID">-1</int>
110
- <reference key="object" ref="372490531"/>
111
- <reference key="parent" ref="0"/>
112
- <string key="objectName">File's Owner</string>
113
- </object>
114
- <object class="IBObjectRecord">
115
- <int key="objectID">-2</int>
116
- <reference key="object" ref="340535442"/>
117
- <reference key="parent" ref="0"/>
118
- </object>
119
- <object class="IBObjectRecord">
120
- <int key="objectID">40</int>
121
- <reference key="object" ref="249263867"/>
122
- <object class="NSMutableArray" key="children">
123
- <bool key="EncodedWithXMLCoder">YES</bool>
124
- <reference ref="871675769"/>
125
- </object>
126
- <reference key="parent" ref="0"/>
127
- </object>
128
- <object class="IBObjectRecord">
129
- <int key="objectID">42</int>
130
- <reference key="object" ref="871675769"/>
131
- <object class="NSMutableArray" key="children">
132
- <bool key="EncodedWithXMLCoder">YES</bool>
133
- <reference ref="553200710"/>
134
- </object>
135
- <reference key="parent" ref="249263867"/>
136
- </object>
137
- <object class="IBObjectRecord">
138
- <int key="objectID">43</int>
139
- <reference key="object" ref="553200710"/>
140
- <object class="NSMutableArray" key="children">
141
- <bool key="EncodedWithXMLCoder">YES</bool>
142
- <reference ref="854562692"/>
143
- </object>
144
- <reference key="parent" ref="871675769"/>
145
- </object>
146
- <object class="IBObjectRecord">
147
- <int key="objectID">44</int>
148
- <reference key="object" ref="854562692"/>
149
- <reference key="parent" ref="553200710"/>
150
- </object>
151
- </object>
152
- </object>
153
- <object class="NSMutableDictionary" key="flattenedProperties">
154
- <bool key="EncodedWithXMLCoder">YES</bool>
155
- <object class="NSArray" key="dict.sortedKeys">
156
- <bool key="EncodedWithXMLCoder">YES</bool>
157
- <string>-1.CustomClassName</string>
158
- <string>-2.CustomClassName</string>
159
- <string>40.CustomClassName</string>
160
- <string>40.IBEditorWindowLastContentRect</string>
161
- <string>40.IBPluginDependency</string>
162
- <string>42.IBPluginDependency</string>
163
- <string>43.IBPluginDependency</string>
164
- <string>44.IBPluginDependency</string>
165
- </object>
166
- <object class="NSMutableArray" key="dict.values">
167
- <bool key="EncodedWithXMLCoder">YES</bool>
168
- <string>FlipsideViewController</string>
169
- <string>UIResponder</string>
170
- <string>FlipsideView</string>
171
- <string>{{403, 223}, {320, 480}}</string>
172
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
173
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
174
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
175
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
176
- </object>
177
- </object>
178
- <object class="NSMutableDictionary" key="unlocalizedProperties">
179
- <bool key="EncodedWithXMLCoder">YES</bool>
180
- <reference key="dict.sortedKeys" ref="0"/>
181
- <object class="NSMutableArray" key="dict.values">
182
- <bool key="EncodedWithXMLCoder">YES</bool>
183
- </object>
184
- </object>
185
- <nil key="activeLocalization"/>
186
- <object class="NSMutableDictionary" key="localizations">
187
- <bool key="EncodedWithXMLCoder">YES</bool>
188
- <reference key="dict.sortedKeys" ref="0"/>
189
- <object class="NSMutableArray" key="dict.values">
190
- <bool key="EncodedWithXMLCoder">YES</bool>
191
- </object>
192
- </object>
193
- <nil key="sourceID"/>
194
- <int key="maxID">45</int>
195
- </object>
196
- <object class="IBClassDescriber" key="IBDocument.Classes">
197
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
198
- <bool key="EncodedWithXMLCoder">YES</bool>
199
- <object class="IBPartialClassDescription">
200
- <string key="className">FlipsideView</string>
201
- <string key="superclassName">UIView</string>
202
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
203
- <string key="majorKey">IBProjectSource</string>
204
- <string key="minorKey">Classes/FlipsideView.h</string>
205
- </object>
206
- </object>
207
- <object class="IBPartialClassDescription">
208
- <string key="className">FlipsideViewController</string>
209
- <string key="superclassName">UIViewController</string>
210
- <object class="NSMutableDictionary" key="actions">
211
- <string key="NS.key.0">done</string>
212
- <string key="NS.object.0">id</string>
213
- </object>
214
- <object class="NSMutableDictionary" key="outlets">
215
- <string key="NS.key.0">delegate</string>
216
- <string key="NS.object.0">id</string>
217
- </object>
218
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
219
- <string key="majorKey">IBProjectSource</string>
220
- <string key="minorKey">Classes/FlipsideViewController.h</string>
221
- </object>
222
- </object>
223
- </object>
224
- <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
225
- <bool key="EncodedWithXMLCoder">YES</bool>
226
- <object class="IBPartialClassDescription">
227
- <string key="className">NSObject</string>
228
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
229
- <string key="majorKey">IBFrameworkSource</string>
230
- <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
231
- </object>
232
- </object>
233
- <object class="IBPartialClassDescription">
234
- <string key="className">NSObject</string>
235
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
236
- <string key="majorKey">IBFrameworkSource</string>
237
- <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
238
- </object>
239
- </object>
240
- <object class="IBPartialClassDescription">
241
- <string key="className">NSObject</string>
242
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
243
- <string key="majorKey">IBFrameworkSource</string>
244
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
245
- </object>
246
- </object>
247
- <object class="IBPartialClassDescription">
248
- <string key="className">NSObject</string>
249
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
250
- <string key="majorKey">IBFrameworkSource</string>
251
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
252
- </object>
253
- </object>
254
- <object class="IBPartialClassDescription">
255
- <string key="className">NSObject</string>
256
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
257
- <string key="majorKey">IBFrameworkSource</string>
258
- <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
259
- </object>
260
- </object>
261
- <object class="IBPartialClassDescription">
262
- <string key="className">NSObject</string>
263
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
264
- <string key="majorKey">IBFrameworkSource</string>
265
- <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
266
- </object>
267
- </object>
268
- <object class="IBPartialClassDescription">
269
- <string key="className">NSObject</string>
270
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
271
- <string key="majorKey">IBFrameworkSource</string>
272
- <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
273
- </object>
274
- </object>
275
- <object class="IBPartialClassDescription">
276
- <string key="className">NSObject</string>
277
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
278
- <string key="majorKey">IBFrameworkSource</string>
279
- <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
280
- </object>
281
- </object>
282
- <object class="IBPartialClassDescription">
283
- <string key="className">NSObject</string>
284
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
285
- <string key="majorKey">IBFrameworkSource</string>
286
- <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
287
- </object>
288
- </object>
289
- <object class="IBPartialClassDescription">
290
- <string key="className">NSObject</string>
291
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
292
- <string key="majorKey">IBFrameworkSource</string>
293
- <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
294
- </object>
295
- </object>
296
- <object class="IBPartialClassDescription">
297
- <string key="className">NSObject</string>
298
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
299
- <string key="majorKey">IBFrameworkSource</string>
300
- <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
301
- </object>
302
- </object>
303
- <object class="IBPartialClassDescription">
304
- <string key="className">NSObject</string>
305
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
306
- <string key="majorKey">IBFrameworkSource</string>
307
- <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
308
- </object>
309
- </object>
310
- <object class="IBPartialClassDescription">
311
- <string key="className">NSObject</string>
312
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
313
- <string key="majorKey">IBFrameworkSource</string>
314
- <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
315
- </object>
316
- </object>
317
- <object class="IBPartialClassDescription">
318
- <string key="className">NSObject</string>
319
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
320
- <string key="majorKey">IBFrameworkSource</string>
321
- <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
322
- </object>
323
- </object>
324
- <object class="IBPartialClassDescription">
325
- <string key="className">NSObject</string>
326
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
327
- <string key="majorKey">IBFrameworkSource</string>
328
- <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
329
- </object>
330
- </object>
331
- <object class="IBPartialClassDescription">
332
- <string key="className">NSObject</string>
333
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
334
- <string key="majorKey">IBFrameworkSource</string>
335
- <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
336
- </object>
337
- </object>
338
- <object class="IBPartialClassDescription">
339
- <string key="className">NSObject</string>
340
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="646561800">
341
- <string key="majorKey">IBFrameworkSource</string>
342
- <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
343
- </object>
344
- </object>
345
- <object class="IBPartialClassDescription">
346
- <string key="className">UIBarButtonItem</string>
347
- <string key="superclassName">UIBarItem</string>
348
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
349
- <string key="majorKey">IBFrameworkSource</string>
350
- <string key="minorKey">UIKit.framework/Headers/UIBarButtonItem.h</string>
351
- </object>
352
- </object>
353
- <object class="IBPartialClassDescription">
354
- <string key="className">UIBarItem</string>
355
- <string key="superclassName">NSObject</string>
356
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
357
- <string key="majorKey">IBFrameworkSource</string>
358
- <string key="minorKey">UIKit.framework/Headers/UIBarItem.h</string>
359
- </object>
360
- </object>
361
- <object class="IBPartialClassDescription">
362
- <string key="className">UINavigationBar</string>
363
- <string key="superclassName">UIView</string>
364
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="826049994">
365
- <string key="majorKey">IBFrameworkSource</string>
366
- <string key="minorKey">UIKit.framework/Headers/UINavigationBar.h</string>
367
- </object>
368
- </object>
369
- <object class="IBPartialClassDescription">
370
- <string key="className">UINavigationItem</string>
371
- <string key="superclassName">NSObject</string>
372
- <reference key="sourceIdentifier" ref="826049994"/>
373
- </object>
374
- <object class="IBPartialClassDescription">
375
- <string key="className">UIResponder</string>
376
- <string key="superclassName">NSObject</string>
377
- <reference key="sourceIdentifier" ref="646561800"/>
378
- </object>
379
- <object class="IBPartialClassDescription">
380
- <string key="className">UISearchBar</string>
381
- <string key="superclassName">UIView</string>
382
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
383
- <string key="majorKey">IBFrameworkSource</string>
384
- <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
385
- </object>
386
- </object>
387
- <object class="IBPartialClassDescription">
388
- <string key="className">UISearchDisplayController</string>
389
- <string key="superclassName">NSObject</string>
390
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
391
- <string key="majorKey">IBFrameworkSource</string>
392
- <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
393
- </object>
394
- </object>
395
- <object class="IBPartialClassDescription">
396
- <string key="className">UIView</string>
397
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
398
- <string key="majorKey">IBFrameworkSource</string>
399
- <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
400
- </object>
401
- </object>
402
- <object class="IBPartialClassDescription">
403
- <string key="className">UIView</string>
404
- <string key="superclassName">UIResponder</string>
405
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
406
- <string key="majorKey">IBFrameworkSource</string>
407
- <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
408
- </object>
409
- </object>
410
- <object class="IBPartialClassDescription">
411
- <string key="className">UIViewController</string>
412
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
413
- <string key="majorKey">IBFrameworkSource</string>
414
- <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
415
- </object>
416
- </object>
417
- <object class="IBPartialClassDescription">
418
- <string key="className">UIViewController</string>
419
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
420
- <string key="majorKey">IBFrameworkSource</string>
421
- <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
422
- </object>
423
- </object>
424
- <object class="IBPartialClassDescription">
425
- <string key="className">UIViewController</string>
426
- <string key="superclassName">UIResponder</string>
427
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
428
- <string key="majorKey">IBFrameworkSource</string>
429
- <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
430
- </object>
431
- </object>
432
- </object>
433
- </object>
434
- <int key="IBDocument.localizationMode">0</int>
435
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
436
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
437
- <integer value="3100" key="NS.object.0"/>
438
- </object>
439
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
440
- <string key="IBDocument.LastKnownRelativeProjectPath">iCuke.xcodeproj</string>
441
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
442
- <string key="IBCocoaTouchPluginVersion">3.1</string>
443
- </data>
444
- </archive>