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
@@ -0,0 +1,415 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.03">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">768</int>
5
+ <string key="IBDocument.SystemVersion">9G55</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">677</string>
7
+ <string key="IBDocument.AppKitVersion">949.43</string>
8
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
9
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
10
+ <bool key="EncodedWithXMLCoder">YES</bool>
11
+ <integer value="3"/>
12
+ </object>
13
+ <object class="NSArray" key="IBDocument.PluginDependencies">
14
+ <bool key="EncodedWithXMLCoder">YES</bool>
15
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
16
+ </object>
17
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
18
+ <bool key="EncodedWithXMLCoder">YES</bool>
19
+ <object class="NSArray" key="dict.sortedKeys">
20
+ <bool key="EncodedWithXMLCoder">YES</bool>
21
+ </object>
22
+ <object class="NSMutableArray" key="dict.values">
23
+ <bool key="EncodedWithXMLCoder">YES</bool>
24
+ </object>
25
+ </object>
26
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <bool key="EncodedWithXMLCoder">YES</bool>
28
+ <object class="IBProxyObject" id="841351856">
29
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="606714003">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ </object>
34
+ <object class="IBUIView" id="338580997">
35
+ <reference key="NSNextResponder"/>
36
+ <int key="NSvFlags">274</int>
37
+ <object class="NSMutableArray" key="NSSubviews">
38
+ <bool key="EncodedWithXMLCoder">YES</bool>
39
+ <object class="IBUIToolbar" id="85997004">
40
+ <reference key="NSNextResponder" ref="338580997"/>
41
+ <int key="NSvFlags">266</int>
42
+ <object class="NSMutableArray" key="NSSubviews">
43
+ <bool key="EncodedWithXMLCoder">YES</bool>
44
+ <object class="IBUISegmentedControl" id="641262436">
45
+ <reference key="NSNextResponder" ref="85997004"/>
46
+ <int key="NSvFlags">292</int>
47
+ <string key="NSFrame">{{12, 7}, {299, 30}}</string>
48
+ <reference key="NSSuperview" ref="85997004"/>
49
+ <bool key="IBUIOpaque">NO</bool>
50
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
51
+ <int key="IBSegmentControlStyle">2</int>
52
+ <int key="IBNumberOfSegments">3</int>
53
+ <int key="IBSelectedSegmentIndex">0</int>
54
+ <object class="NSArray" key="IBSegmentTitles">
55
+ <bool key="EncodedWithXMLCoder">YES</bool>
56
+ <string>UIPicker</string>
57
+ <string>UIDatePicker</string>
58
+ <string>Custom</string>
59
+ </object>
60
+ <object class="NSMutableArray" key="IBSegmentWidths">
61
+ <bool key="EncodedWithXMLCoder">YES</bool>
62
+ <real value="0.000000e+00"/>
63
+ <real value="0.000000e+00"/>
64
+ <real value="0.000000e+00"/>
65
+ </object>
66
+ <object class="NSMutableArray" key="IBSegmentEnabledStates">
67
+ <bool key="EncodedWithXMLCoder">YES</bool>
68
+ <boolean value="YES" id="5"/>
69
+ <reference ref="5"/>
70
+ <reference ref="5"/>
71
+ </object>
72
+ <object class="NSMutableArray" key="IBSegmentContentOffsets">
73
+ <bool key="EncodedWithXMLCoder">YES</bool>
74
+ <string>{0, 0}</string>
75
+ <string>{0, 0}</string>
76
+ <string>{0, 0}</string>
77
+ </object>
78
+ <object class="NSMutableArray" key="IBSegmentImages">
79
+ <bool key="EncodedWithXMLCoder">YES</bool>
80
+ <object class="NSNull" id="4"/>
81
+ <reference ref="4"/>
82
+ <reference ref="4"/>
83
+ </object>
84
+ </object>
85
+ </object>
86
+ <string key="NSFrame">{{0, 416}, {320, 44}}</string>
87
+ <reference key="NSSuperview" ref="338580997"/>
88
+ <bool key="IBUIOpaque">NO</bool>
89
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
90
+ <object class="NSMutableArray" key="IBUIItems">
91
+ <bool key="EncodedWithXMLCoder">YES</bool>
92
+ <object class="IBUIBarButtonItem" id="1000934172">
93
+ <reference key="IBUICustomView" ref="641262436"/>
94
+ <reference key="IBUIToolbar" ref="85997004"/>
95
+ </object>
96
+ </object>
97
+ <object class="NSColor" key="IBUITintColor">
98
+ <int key="NSColorSpace">3</int>
99
+ <bytes key="NSWhite">MCAwLjAyOTk5OTk5OQA</bytes>
100
+ </object>
101
+ </object>
102
+ <object class="IBUISegmentedControl" id="899453983">
103
+ <reference key="NSNextResponder" ref="338580997"/>
104
+ <int key="NSvFlags">-2147483347</int>
105
+ <string key="NSFrame">{{51, 59}, {207, 30}}</string>
106
+ <reference key="NSSuperview" ref="338580997"/>
107
+ <bool key="IBUIOpaque">NO</bool>
108
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
109
+ <int key="IBSegmentControlStyle">2</int>
110
+ <int key="IBNumberOfSegments">4</int>
111
+ <int key="IBSelectedSegmentIndex">1</int>
112
+ <object class="NSArray" key="IBSegmentTitles">
113
+ <bool key="EncodedWithXMLCoder">YES</bool>
114
+ <string>1</string>
115
+ <string>2</string>
116
+ <string>3</string>
117
+ <string>4</string>
118
+ </object>
119
+ <object class="NSMutableArray" key="IBSegmentWidths">
120
+ <bool key="EncodedWithXMLCoder">YES</bool>
121
+ <real value="0.000000e+00"/>
122
+ <real value="0.000000e+00"/>
123
+ <real value="0.000000e+00"/>
124
+ <real value="0.000000e+00"/>
125
+ </object>
126
+ <object class="NSMutableArray" key="IBSegmentEnabledStates">
127
+ <bool key="EncodedWithXMLCoder">YES</bool>
128
+ <reference ref="5"/>
129
+ <reference ref="5"/>
130
+ <reference ref="5"/>
131
+ <reference ref="5"/>
132
+ </object>
133
+ <object class="NSMutableArray" key="IBSegmentContentOffsets">
134
+ <bool key="EncodedWithXMLCoder">YES</bool>
135
+ <string>{0, 0}</string>
136
+ <string>{0, 0}</string>
137
+ <string>{0, 0}</string>
138
+ <string>{0, 0}</string>
139
+ </object>
140
+ <object class="NSMutableArray" key="IBSegmentImages">
141
+ <bool key="EncodedWithXMLCoder">YES</bool>
142
+ <reference ref="4"/>
143
+ <reference ref="4"/>
144
+ <reference ref="4"/>
145
+ <reference ref="4"/>
146
+ </object>
147
+ </object>
148
+ <object class="IBUILabel" id="614700650">
149
+ <reference key="NSNextResponder" ref="338580997"/>
150
+ <int key="NSvFlags">-2147483347</int>
151
+ <string key="NSFrame">{{20, 30}, {280, 21}}</string>
152
+ <reference key="NSSuperview" ref="338580997"/>
153
+ <bool key="IBUIOpaque">NO</bool>
154
+ <bool key="IBUIClipsSubviews">YES</bool>
155
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
156
+ <string key="IBUIText"/>
157
+ <object class="NSFont" key="IBUIFont">
158
+ <string key="NSName">Helvetica</string>
159
+ <double key="NSSize">1.400000e+01</double>
160
+ <int key="NSfFlags">16</int>
161
+ </object>
162
+ <object class="NSColor" key="IBUITextColor">
163
+ <int key="NSColorSpace">1</int>
164
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
165
+ <object class="NSColorSpace" key="NSCustomColorSpace">
166
+ <int key="NSID">1</int>
167
+ </object>
168
+ </object>
169
+ <nil key="IBUIHighlightedColor"/>
170
+ <int key="IBUIBaselineAdjustment">1</int>
171
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
172
+ <int key="IBUITextAlignment">1</int>
173
+ </object>
174
+ </object>
175
+ <string key="NSFrameSize">{320, 460}</string>
176
+ <reference key="NSSuperview"/>
177
+ <object class="NSColor" key="IBUIBackgroundColor">
178
+ <int key="NSColorSpace">1</int>
179
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
180
+ </object>
181
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
182
+ </object>
183
+ </object>
184
+ <object class="IBObjectContainer" key="IBDocument.Objects">
185
+ <object class="NSMutableArray" key="connectionRecords">
186
+ <bool key="EncodedWithXMLCoder">YES</bool>
187
+ <object class="IBConnectionRecord">
188
+ <object class="IBCocoaTouchOutletConnection" key="connection">
189
+ <string key="label">view</string>
190
+ <reference key="source" ref="841351856"/>
191
+ <reference key="destination" ref="338580997"/>
192
+ </object>
193
+ <int key="connectionID">6</int>
194
+ </object>
195
+ <object class="IBConnectionRecord">
196
+ <object class="IBCocoaTouchOutletConnection" key="connection">
197
+ <string key="label">buttonBarSegmentedControl</string>
198
+ <reference key="source" ref="841351856"/>
199
+ <reference key="destination" ref="641262436"/>
200
+ </object>
201
+ <int key="connectionID">11</int>
202
+ </object>
203
+ <object class="IBConnectionRecord">
204
+ <object class="IBCocoaTouchEventConnection" key="connection">
205
+ <string key="label">togglePickerStyle:</string>
206
+ <reference key="source" ref="641262436"/>
207
+ <reference key="destination" ref="841351856"/>
208
+ <int key="IBEventType">13</int>
209
+ </object>
210
+ <int key="connectionID">13</int>
211
+ </object>
212
+ <object class="IBConnectionRecord">
213
+ <object class="IBCocoaTouchEventConnection" key="connection">
214
+ <string key="label">togglePickers:</string>
215
+ <reference key="source" ref="1000934172"/>
216
+ <reference key="destination" ref="841351856"/>
217
+ </object>
218
+ <int key="connectionID">14</int>
219
+ </object>
220
+ <object class="IBConnectionRecord">
221
+ <object class="IBCocoaTouchEventConnection" key="connection">
222
+ <string key="label">togglePickers:</string>
223
+ <reference key="source" ref="641262436"/>
224
+ <reference key="destination" ref="841351856"/>
225
+ <int key="IBEventType">13</int>
226
+ </object>
227
+ <int key="connectionID">15</int>
228
+ </object>
229
+ <object class="IBConnectionRecord">
230
+ <object class="IBCocoaTouchOutletConnection" key="connection">
231
+ <string key="label">pickerStyleSegmentedControl</string>
232
+ <reference key="source" ref="841351856"/>
233
+ <reference key="destination" ref="899453983"/>
234
+ </object>
235
+ <int key="connectionID">18</int>
236
+ </object>
237
+ <object class="IBConnectionRecord">
238
+ <object class="IBCocoaTouchOutletConnection" key="connection">
239
+ <string key="label">segmentLabel</string>
240
+ <reference key="source" ref="841351856"/>
241
+ <reference key="destination" ref="614700650"/>
242
+ </object>
243
+ <int key="connectionID">19</int>
244
+ </object>
245
+ <object class="IBConnectionRecord">
246
+ <object class="IBCocoaTouchEventConnection" key="connection">
247
+ <string key="label">togglePickerStyle:</string>
248
+ <reference key="source" ref="899453983"/>
249
+ <reference key="destination" ref="841351856"/>
250
+ <int key="IBEventType">13</int>
251
+ </object>
252
+ <int key="connectionID">20</int>
253
+ </object>
254
+ </object>
255
+ <object class="IBMutableOrderedSet" key="objectRecords">
256
+ <object class="NSArray" key="orderedObjects">
257
+ <bool key="EncodedWithXMLCoder">YES</bool>
258
+ <object class="IBObjectRecord">
259
+ <int key="objectID">0</int>
260
+ <object class="NSArray" key="object" id="957960031">
261
+ <bool key="EncodedWithXMLCoder">YES</bool>
262
+ </object>
263
+ <reference key="children" ref="1000"/>
264
+ <nil key="parent"/>
265
+ </object>
266
+ <object class="IBObjectRecord">
267
+ <int key="objectID">-1</int>
268
+ <reference key="object" ref="841351856"/>
269
+ <reference key="parent" ref="957960031"/>
270
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
271
+ </object>
272
+ <object class="IBObjectRecord">
273
+ <int key="objectID">-2</int>
274
+ <reference key="object" ref="606714003"/>
275
+ <reference key="parent" ref="957960031"/>
276
+ </object>
277
+ <object class="IBObjectRecord">
278
+ <int key="objectID">3</int>
279
+ <reference key="object" ref="338580997"/>
280
+ <object class="NSMutableArray" key="children">
281
+ <bool key="EncodedWithXMLCoder">YES</bool>
282
+ <reference ref="899453983"/>
283
+ <reference ref="614700650"/>
284
+ <reference ref="85997004"/>
285
+ </object>
286
+ <reference key="parent" ref="957960031"/>
287
+ </object>
288
+ <object class="IBObjectRecord">
289
+ <int key="objectID">7</int>
290
+ <reference key="object" ref="85997004"/>
291
+ <object class="NSMutableArray" key="children">
292
+ <bool key="EncodedWithXMLCoder">YES</bool>
293
+ <reference ref="1000934172"/>
294
+ </object>
295
+ <reference key="parent" ref="338580997"/>
296
+ </object>
297
+ <object class="IBObjectRecord">
298
+ <int key="objectID">10</int>
299
+ <reference key="object" ref="1000934172"/>
300
+ <object class="NSMutableArray" key="children">
301
+ <bool key="EncodedWithXMLCoder">YES</bool>
302
+ <reference ref="641262436"/>
303
+ </object>
304
+ <reference key="parent" ref="85997004"/>
305
+ </object>
306
+ <object class="IBObjectRecord">
307
+ <int key="objectID">9</int>
308
+ <reference key="object" ref="641262436"/>
309
+ <reference key="parent" ref="1000934172"/>
310
+ </object>
311
+ <object class="IBObjectRecord">
312
+ <int key="objectID">16</int>
313
+ <reference key="object" ref="899453983"/>
314
+ <reference key="parent" ref="338580997"/>
315
+ </object>
316
+ <object class="IBObjectRecord">
317
+ <int key="objectID">17</int>
318
+ <reference key="object" ref="614700650"/>
319
+ <reference key="parent" ref="338580997"/>
320
+ </object>
321
+ </object>
322
+ </object>
323
+ <object class="NSMutableDictionary" key="flattenedProperties">
324
+ <bool key="EncodedWithXMLCoder">YES</bool>
325
+ <object class="NSMutableArray" key="dict.sortedKeys">
326
+ <bool key="EncodedWithXMLCoder">YES</bool>
327
+ <string>-1.CustomClassName</string>
328
+ <string>-2.CustomClassName</string>
329
+ <string>16.IBPluginDependency</string>
330
+ <string>17.IBPluginDependency</string>
331
+ <string>3.IBEditorWindowLastContentRect</string>
332
+ <string>3.IBPluginDependency</string>
333
+ <string>7.IBPluginDependency</string>
334
+ <string>9.IBPluginDependency</string>
335
+ </object>
336
+ <object class="NSMutableArray" key="dict.values">
337
+ <bool key="EncodedWithXMLCoder">YES</bool>
338
+ <string>PickerViewController</string>
339
+ <string>UIResponder</string>
340
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
341
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
342
+ <string>{{0, 535}, {320, 460}}</string>
343
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
344
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
345
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
346
+ </object>
347
+ </object>
348
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
349
+ <bool key="EncodedWithXMLCoder">YES</bool>
350
+ <object class="NSArray" key="dict.sortedKeys">
351
+ <bool key="EncodedWithXMLCoder">YES</bool>
352
+ </object>
353
+ <object class="NSMutableArray" key="dict.values">
354
+ <bool key="EncodedWithXMLCoder">YES</bool>
355
+ </object>
356
+ </object>
357
+ <nil key="activeLocalization"/>
358
+ <object class="NSMutableDictionary" key="localizations">
359
+ <bool key="EncodedWithXMLCoder">YES</bool>
360
+ <object class="NSArray" key="dict.sortedKeys">
361
+ <bool key="EncodedWithXMLCoder">YES</bool>
362
+ </object>
363
+ <object class="NSMutableArray" key="dict.values">
364
+ <bool key="EncodedWithXMLCoder">YES</bool>
365
+ </object>
366
+ </object>
367
+ <nil key="sourceID"/>
368
+ <int key="maxID">20</int>
369
+ </object>
370
+ <object class="IBClassDescriber" key="IBDocument.Classes">
371
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
372
+ <bool key="EncodedWithXMLCoder">YES</bool>
373
+ <object class="IBPartialClassDescription">
374
+ <string key="className">PickerViewController</string>
375
+ <string key="superclassName">UIViewController</string>
376
+ <object class="NSMutableDictionary" key="actions">
377
+ <bool key="EncodedWithXMLCoder">YES</bool>
378
+ <object class="NSMutableArray" key="dict.sortedKeys">
379
+ <bool key="EncodedWithXMLCoder">YES</bool>
380
+ <string>togglePickerStyle:</string>
381
+ <string>togglePickers:</string>
382
+ </object>
383
+ <object class="NSMutableArray" key="dict.values">
384
+ <bool key="EncodedWithXMLCoder">YES</bool>
385
+ <string>id</string>
386
+ <string>id</string>
387
+ </object>
388
+ </object>
389
+ <object class="NSMutableDictionary" key="outlets">
390
+ <bool key="EncodedWithXMLCoder">YES</bool>
391
+ <object class="NSMutableArray" key="dict.sortedKeys">
392
+ <bool key="EncodedWithXMLCoder">YES</bool>
393
+ <string>buttonBarSegmentedControl</string>
394
+ <string>pickerStyleSegmentedControl</string>
395
+ <string>segmentLabel</string>
396
+ </object>
397
+ <object class="NSMutableArray" key="dict.values">
398
+ <bool key="EncodedWithXMLCoder">YES</bool>
399
+ <string>UISegmentedControl</string>
400
+ <string>UISegmentedControl</string>
401
+ <string>UILabel</string>
402
+ </object>
403
+ </object>
404
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
405
+ <string key="majorKey">IBProjectSource</string>
406
+ <string key="minorKey">PickerViewController.h</string>
407
+ </object>
408
+ </object>
409
+ </object>
410
+ </object>
411
+ <int key="IBDocument.localizationMode">0</int>
412
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
413
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
414
+ </data>
415
+ </archive>
@@ -0,0 +1,142 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.03">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">768</int>
5
+ <string key="IBDocument.SystemVersion">9G55</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">677</string>
7
+ <string key="IBDocument.AppKitVersion">949.43</string>
8
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
9
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
10
+ <bool key="EncodedWithXMLCoder">YES</bool>
11
+ </object>
12
+ <object class="NSArray" key="IBDocument.PluginDependencies">
13
+ <bool key="EncodedWithXMLCoder">YES</bool>
14
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
15
+ </object>
16
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
17
+ <bool key="EncodedWithXMLCoder">YES</bool>
18
+ <object class="NSArray" key="dict.sortedKeys">
19
+ <bool key="EncodedWithXMLCoder">YES</bool>
20
+ </object>
21
+ <object class="NSMutableArray" key="dict.values">
22
+ <bool key="EncodedWithXMLCoder">YES</bool>
23
+ </object>
24
+ </object>
25
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
26
+ <bool key="EncodedWithXMLCoder">YES</bool>
27
+ <object class="IBProxyObject" id="841351856">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ </object>
30
+ <object class="IBProxyObject" id="371349661">
31
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
32
+ </object>
33
+ <object class="IBUIView" id="531101154">
34
+ <nil key="NSNextResponder"/>
35
+ <int key="NSvFlags">292</int>
36
+ <string key="NSFrame">{{116, 125}, {320, 460}}</string>
37
+ <object class="NSColor" key="IBUIBackgroundColor">
38
+ <int key="NSColorSpace">3</int>
39
+ <bytes key="NSWhite">MQA</bytes>
40
+ <object class="NSColorSpace" key="NSCustomColorSpace">
41
+ <int key="NSID">2</int>
42
+ </object>
43
+ </object>
44
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
45
+ </object>
46
+ </object>
47
+ <object class="IBObjectContainer" key="IBDocument.Objects">
48
+ <object class="NSMutableArray" key="connectionRecords">
49
+ <bool key="EncodedWithXMLCoder">YES</bool>
50
+ <object class="IBConnectionRecord">
51
+ <object class="IBCocoaTouchOutletConnection" key="connection">
52
+ <string key="label">view</string>
53
+ <reference key="source" ref="841351856"/>
54
+ <reference key="destination" ref="531101154"/>
55
+ </object>
56
+ <int key="connectionID">7</int>
57
+ </object>
58
+ </object>
59
+ <object class="IBMutableOrderedSet" key="objectRecords">
60
+ <object class="NSArray" key="orderedObjects">
61
+ <bool key="EncodedWithXMLCoder">YES</bool>
62
+ <object class="IBObjectRecord">
63
+ <int key="objectID">0</int>
64
+ <object class="NSArray" key="object" id="957960031">
65
+ <bool key="EncodedWithXMLCoder">YES</bool>
66
+ </object>
67
+ <reference key="children" ref="1000"/>
68
+ <nil key="parent"/>
69
+ </object>
70
+ <object class="IBObjectRecord">
71
+ <int key="objectID">-1</int>
72
+ <reference key="object" ref="841351856"/>
73
+ <reference key="parent" ref="957960031"/>
74
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
75
+ </object>
76
+ <object class="IBObjectRecord">
77
+ <int key="objectID">-2</int>
78
+ <reference key="object" ref="371349661"/>
79
+ <reference key="parent" ref="957960031"/>
80
+ </object>
81
+ <object class="IBObjectRecord">
82
+ <int key="objectID">6</int>
83
+ <reference key="object" ref="531101154"/>
84
+ <reference key="parent" ref="957960031"/>
85
+ </object>
86
+ </object>
87
+ </object>
88
+ <object class="NSMutableDictionary" key="flattenedProperties">
89
+ <bool key="EncodedWithXMLCoder">YES</bool>
90
+ <object class="NSMutableArray" key="dict.sortedKeys">
91
+ <bool key="EncodedWithXMLCoder">YES</bool>
92
+ <string>-1.CustomClassName</string>
93
+ <string>-2.CustomClassName</string>
94
+ <string>6.IBPluginDependency</string>
95
+ </object>
96
+ <object class="NSMutableArray" key="dict.values">
97
+ <bool key="EncodedWithXMLCoder">YES</bool>
98
+ <string>SearchBarController</string>
99
+ <string>UIResponder</string>
100
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
101
+ </object>
102
+ </object>
103
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
104
+ <bool key="EncodedWithXMLCoder">YES</bool>
105
+ <object class="NSArray" key="dict.sortedKeys">
106
+ <bool key="EncodedWithXMLCoder">YES</bool>
107
+ </object>
108
+ <object class="NSMutableArray" key="dict.values">
109
+ <bool key="EncodedWithXMLCoder">YES</bool>
110
+ </object>
111
+ </object>
112
+ <nil key="activeLocalization"/>
113
+ <object class="NSMutableDictionary" key="localizations">
114
+ <bool key="EncodedWithXMLCoder">YES</bool>
115
+ <object class="NSArray" key="dict.sortedKeys">
116
+ <bool key="EncodedWithXMLCoder">YES</bool>
117
+ </object>
118
+ <object class="NSMutableArray" key="dict.values">
119
+ <bool key="EncodedWithXMLCoder">YES</bool>
120
+ </object>
121
+ </object>
122
+ <nil key="sourceID"/>
123
+ <int key="maxID">7</int>
124
+ </object>
125
+ <object class="IBClassDescriber" key="IBDocument.Classes">
126
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
127
+ <bool key="EncodedWithXMLCoder">YES</bool>
128
+ <object class="IBPartialClassDescription">
129
+ <string key="className">SearchBarController</string>
130
+ <string key="superclassName">UIViewController</string>
131
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
132
+ <string key="majorKey">IBProjectSource</string>
133
+ <string key="minorKey">SearchBarController.h</string>
134
+ </object>
135
+ </object>
136
+ </object>
137
+ </object>
138
+ <int key="IBDocument.localizationMode">0</int>
139
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
140
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
141
+ </data>
142
+ </archive>