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,491 @@
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="6"/>
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="371349661">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ </object>
34
+ <object class="IBUIView" id="531101154">
35
+ <reference key="NSNextResponder"/>
36
+ <int key="NSvFlags">292</int>
37
+ <object class="NSMutableArray" key="NSSubviews">
38
+ <bool key="EncodedWithXMLCoder">YES</bool>
39
+ <object class="IBUISegmentedControl" id="967445800">
40
+ <reference key="NSNextResponder" ref="531101154"/>
41
+ <int key="NSvFlags">292</int>
42
+ <string key="NSFrame">{{20, 106}, {280, 30}}</string>
43
+ <reference key="NSSuperview" ref="531101154"/>
44
+ <bool key="IBUIOpaque">NO</bool>
45
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
46
+ <int key="IBSegmentControlStyle">2</int>
47
+ <int key="IBNumberOfSegments">3</int>
48
+ <int key="IBSelectedSegmentIndex">0</int>
49
+ <object class="NSArray" key="IBSegmentTitles">
50
+ <bool key="EncodedWithXMLCoder">YES</bool>
51
+ <string>Plain</string>
52
+ <string>Bordered</string>
53
+ <string>Done</string>
54
+ </object>
55
+ <object class="NSMutableArray" key="IBSegmentWidths">
56
+ <bool key="EncodedWithXMLCoder">YES</bool>
57
+ <real value="0.000000e+00"/>
58
+ <real value="0.000000e+00"/>
59
+ <real value="0.000000e+00"/>
60
+ </object>
61
+ <object class="NSMutableArray" key="IBSegmentEnabledStates">
62
+ <bool key="EncodedWithXMLCoder">YES</bool>
63
+ <boolean value="YES" id="5"/>
64
+ <reference ref="5"/>
65
+ <reference ref="5"/>
66
+ </object>
67
+ <object class="NSMutableArray" key="IBSegmentContentOffsets">
68
+ <bool key="EncodedWithXMLCoder">YES</bool>
69
+ <string>{0, 0}</string>
70
+ <string>{0, 0}</string>
71
+ <string>{0, 0}</string>
72
+ </object>
73
+ <object class="NSMutableArray" key="IBSegmentImages">
74
+ <bool key="EncodedWithXMLCoder">YES</bool>
75
+ <object class="NSNull" id="4"/>
76
+ <reference ref="4"/>
77
+ <reference ref="4"/>
78
+ </object>
79
+ </object>
80
+ <object class="IBUISegmentedControl" id="993373554">
81
+ <reference key="NSNextResponder" ref="531101154"/>
82
+ <int key="NSvFlags">292</int>
83
+ <string key="NSFrame">{{20, 22}, {280, 30}}</string>
84
+ <reference key="NSSuperview" ref="531101154"/>
85
+ <bool key="IBUIOpaque">NO</bool>
86
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
87
+ <int key="IBSegmentControlStyle">2</int>
88
+ <int key="IBNumberOfSegments">3</int>
89
+ <int key="IBSelectedSegmentIndex">0</int>
90
+ <object class="NSArray" key="IBSegmentTitles">
91
+ <bool key="EncodedWithXMLCoder">YES</bool>
92
+ <string>Default</string>
93
+ <string>Black</string>
94
+ <string>Translucent</string>
95
+ </object>
96
+ <object class="NSMutableArray" key="IBSegmentWidths">
97
+ <bool key="EncodedWithXMLCoder">YES</bool>
98
+ <real value="0.000000e+00"/>
99
+ <real value="0.000000e+00"/>
100
+ <real value="0.000000e+00"/>
101
+ </object>
102
+ <object class="NSMutableArray" key="IBSegmentEnabledStates">
103
+ <bool key="EncodedWithXMLCoder">YES</bool>
104
+ <reference ref="5"/>
105
+ <reference ref="5"/>
106
+ <reference ref="5"/>
107
+ </object>
108
+ <object class="NSMutableArray" key="IBSegmentContentOffsets">
109
+ <bool key="EncodedWithXMLCoder">YES</bool>
110
+ <string>{0, 0}</string>
111
+ <string>{0, 0}</string>
112
+ <string>{0, 0}</string>
113
+ </object>
114
+ <object class="NSMutableArray" key="IBSegmentImages">
115
+ <bool key="EncodedWithXMLCoder">YES</bool>
116
+ <reference ref="4"/>
117
+ <reference ref="4"/>
118
+ <reference ref="4"/>
119
+ </object>
120
+ </object>
121
+ <object class="IBUISwitch" id="430576500">
122
+ <reference key="NSNextResponder" ref="531101154"/>
123
+ <int key="NSvFlags">292</int>
124
+ <string key="NSFrame">{{206, 62}, {94, 27}}</string>
125
+ <reference key="NSSuperview" ref="531101154"/>
126
+ <bool key="IBUIOpaque">NO</bool>
127
+ <bool key="IBUIClipsSubviews">YES</bool>
128
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
129
+ <int key="IBUIContentHorizontalAlignment">0</int>
130
+ <int key="IBUIContentVerticalAlignment">0</int>
131
+ </object>
132
+ <object class="IBUILabel" id="935437333">
133
+ <reference key="NSNextResponder" ref="531101154"/>
134
+ <int key="NSvFlags">292</int>
135
+ <string key="NSFrame">{{20, 87}, {164, 21}}</string>
136
+ <reference key="NSSuperview" ref="531101154"/>
137
+ <bool key="IBUIOpaque">NO</bool>
138
+ <bool key="IBUIClipsSubviews">YES</bool>
139
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
140
+ <string key="IBUIText">UIBarButtonItemStyle:</string>
141
+ <object class="NSFont" key="IBUIFont" id="4092569">
142
+ <string key="NSName">Helvetica</string>
143
+ <double key="NSSize">1.200000e+01</double>
144
+ <int key="NSfFlags">16</int>
145
+ </object>
146
+ <object class="NSColor" key="IBUITextColor" id="887317020">
147
+ <int key="NSColorSpace">1</int>
148
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
149
+ </object>
150
+ <nil key="IBUIHighlightedColor"/>
151
+ <int key="IBUIBaselineAdjustment">1</int>
152
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
153
+ </object>
154
+ <object class="IBUILabel" id="680825010">
155
+ <reference key="NSNextResponder" ref="531101154"/>
156
+ <int key="NSvFlags">292</int>
157
+ <string key="NSFrame">{{20, 3}, {164, 21}}</string>
158
+ <reference key="NSSuperview" ref="531101154"/>
159
+ <bool key="IBUIOpaque">NO</bool>
160
+ <bool key="IBUIClipsSubviews">YES</bool>
161
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
162
+ <string key="IBUIText">UIBarStyle:</string>
163
+ <reference key="IBUIFont" ref="4092569"/>
164
+ <reference key="IBUITextColor" ref="887317020"/>
165
+ <nil key="IBUIHighlightedColor"/>
166
+ <int key="IBUIBaselineAdjustment">1</int>
167
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
168
+ </object>
169
+ <object class="IBUILabel" id="922897160">
170
+ <reference key="NSNextResponder" ref="531101154"/>
171
+ <int key="NSvFlags">292</int>
172
+ <string key="NSFrame">{{145, 65}, {56, 21}}</string>
173
+ <reference key="NSSuperview" ref="531101154"/>
174
+ <bool key="IBUIOpaque">NO</bool>
175
+ <bool key="IBUIClipsSubviews">YES</bool>
176
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
177
+ <string key="IBUIText">Tinted:</string>
178
+ <reference key="IBUIFont" ref="4092569"/>
179
+ <reference key="IBUITextColor" ref="887317020"/>
180
+ <nil key="IBUIHighlightedColor"/>
181
+ <int key="IBUIBaselineAdjustment">1</int>
182
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
183
+ <int key="IBUITextAlignment">2</int>
184
+ </object>
185
+ <object class="IBUIPickerView" id="582820865">
186
+ <reference key="NSNextResponder" ref="531101154"/>
187
+ <int key="NSvFlags">292</int>
188
+ <string key="NSFrame">{{0, 158}, {320, 216}}</string>
189
+ <reference key="NSSuperview" ref="531101154"/>
190
+ <bool key="IBUIOpaque">NO</bool>
191
+ <bool key="IBUIClipsSubviews">YES</bool>
192
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
193
+ <bool key="IBUIShowsSelectionIndicator">YES</bool>
194
+ </object>
195
+ <object class="IBUILabel" id="629399114">
196
+ <reference key="NSNextResponder" ref="531101154"/>
197
+ <int key="NSvFlags">292</int>
198
+ <string key="NSFrame">{{20, 140}, {164, 21}}</string>
199
+ <reference key="NSSuperview" ref="531101154"/>
200
+ <bool key="IBUIOpaque">NO</bool>
201
+ <bool key="IBUIClipsSubviews">YES</bool>
202
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
203
+ <string key="IBUIText">UIBarButtonSystemItem:</string>
204
+ <reference key="IBUIFont" ref="4092569"/>
205
+ <reference key="IBUITextColor" ref="887317020"/>
206
+ <nil key="IBUIHighlightedColor"/>
207
+ <int key="IBUIBaselineAdjustment">1</int>
208
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
209
+ </object>
210
+ </object>
211
+ <string key="NSFrameSize">{320, 460}</string>
212
+ <reference key="NSSuperview"/>
213
+ <object class="NSColor" key="IBUIBackgroundColor">
214
+ <int key="NSColorSpace">1</int>
215
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
216
+ </object>
217
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
218
+ </object>
219
+ </object>
220
+ <object class="IBObjectContainer" key="IBDocument.Objects">
221
+ <object class="NSMutableArray" key="connectionRecords">
222
+ <bool key="EncodedWithXMLCoder">YES</bool>
223
+ <object class="IBConnectionRecord">
224
+ <object class="IBCocoaTouchOutletConnection" key="connection">
225
+ <string key="label">view</string>
226
+ <reference key="source" ref="841351856"/>
227
+ <reference key="destination" ref="531101154"/>
228
+ </object>
229
+ <int key="connectionID">7</int>
230
+ </object>
231
+ <object class="IBConnectionRecord">
232
+ <object class="IBCocoaTouchOutletConnection" key="connection">
233
+ <string key="label">barStyleSegControl</string>
234
+ <reference key="source" ref="841351856"/>
235
+ <reference key="destination" ref="993373554"/>
236
+ </object>
237
+ <int key="connectionID">16</int>
238
+ </object>
239
+ <object class="IBConnectionRecord">
240
+ <object class="IBCocoaTouchOutletConnection" key="connection">
241
+ <string key="label">buttonItemStyleSegControl</string>
242
+ <reference key="source" ref="841351856"/>
243
+ <reference key="destination" ref="967445800"/>
244
+ </object>
245
+ <int key="connectionID">17</int>
246
+ </object>
247
+ <object class="IBConnectionRecord">
248
+ <object class="IBCocoaTouchOutletConnection" key="connection">
249
+ <string key="label">systemButtonPicker</string>
250
+ <reference key="source" ref="841351856"/>
251
+ <reference key="destination" ref="582820865"/>
252
+ </object>
253
+ <int key="connectionID">18</int>
254
+ </object>
255
+ <object class="IBConnectionRecord">
256
+ <object class="IBCocoaTouchOutletConnection" key="connection">
257
+ <string key="label">tintSwitch</string>
258
+ <reference key="source" ref="841351856"/>
259
+ <reference key="destination" ref="430576500"/>
260
+ </object>
261
+ <int key="connectionID">19</int>
262
+ </object>
263
+ <object class="IBConnectionRecord">
264
+ <object class="IBCocoaTouchOutletConnection" key="connection">
265
+ <string key="label">dataSource</string>
266
+ <reference key="source" ref="582820865"/>
267
+ <reference key="destination" ref="841351856"/>
268
+ </object>
269
+ <int key="connectionID">20</int>
270
+ </object>
271
+ <object class="IBConnectionRecord">
272
+ <object class="IBCocoaTouchOutletConnection" key="connection">
273
+ <string key="label">delegate</string>
274
+ <reference key="source" ref="582820865"/>
275
+ <reference key="destination" ref="841351856"/>
276
+ </object>
277
+ <int key="connectionID">21</int>
278
+ </object>
279
+ <object class="IBConnectionRecord">
280
+ <object class="IBCocoaTouchEventConnection" key="connection">
281
+ <string key="label">toggleStyle:</string>
282
+ <reference key="source" ref="967445800"/>
283
+ <reference key="destination" ref="841351856"/>
284
+ <int key="IBEventType">13</int>
285
+ </object>
286
+ <int key="connectionID">22</int>
287
+ </object>
288
+ <object class="IBConnectionRecord">
289
+ <object class="IBCocoaTouchEventConnection" key="connection">
290
+ <string key="label">toggleBarStyle:</string>
291
+ <reference key="source" ref="993373554"/>
292
+ <reference key="destination" ref="841351856"/>
293
+ <int key="IBEventType">13</int>
294
+ </object>
295
+ <int key="connectionID">23</int>
296
+ </object>
297
+ <object class="IBConnectionRecord">
298
+ <object class="IBCocoaTouchEventConnection" key="connection">
299
+ <string key="label">toggleTintColor:</string>
300
+ <reference key="source" ref="430576500"/>
301
+ <reference key="destination" ref="841351856"/>
302
+ <int key="IBEventType">13</int>
303
+ </object>
304
+ <int key="connectionID">24</int>
305
+ </object>
306
+ </object>
307
+ <object class="IBMutableOrderedSet" key="objectRecords">
308
+ <object class="NSArray" key="orderedObjects">
309
+ <bool key="EncodedWithXMLCoder">YES</bool>
310
+ <object class="IBObjectRecord">
311
+ <int key="objectID">0</int>
312
+ <object class="NSArray" key="object" id="957960031">
313
+ <bool key="EncodedWithXMLCoder">YES</bool>
314
+ </object>
315
+ <reference key="children" ref="1000"/>
316
+ <nil key="parent"/>
317
+ </object>
318
+ <object class="IBObjectRecord">
319
+ <int key="objectID">-1</int>
320
+ <reference key="object" ref="841351856"/>
321
+ <reference key="parent" ref="957960031"/>
322
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
323
+ </object>
324
+ <object class="IBObjectRecord">
325
+ <int key="objectID">-2</int>
326
+ <reference key="object" ref="371349661"/>
327
+ <reference key="parent" ref="957960031"/>
328
+ </object>
329
+ <object class="IBObjectRecord">
330
+ <int key="objectID">6</int>
331
+ <reference key="object" ref="531101154"/>
332
+ <object class="NSMutableArray" key="children">
333
+ <bool key="EncodedWithXMLCoder">YES</bool>
334
+ <reference ref="967445800"/>
335
+ <reference ref="993373554"/>
336
+ <reference ref="935437333"/>
337
+ <reference ref="680825010"/>
338
+ <reference ref="582820865"/>
339
+ <reference ref="629399114"/>
340
+ <reference ref="430576500"/>
341
+ <reference ref="922897160"/>
342
+ </object>
343
+ <reference key="parent" ref="957960031"/>
344
+ </object>
345
+ <object class="IBObjectRecord">
346
+ <int key="objectID">8</int>
347
+ <reference key="object" ref="967445800"/>
348
+ <reference key="parent" ref="531101154"/>
349
+ </object>
350
+ <object class="IBObjectRecord">
351
+ <int key="objectID">9</int>
352
+ <reference key="object" ref="993373554"/>
353
+ <reference key="parent" ref="531101154"/>
354
+ </object>
355
+ <object class="IBObjectRecord">
356
+ <int key="objectID">10</int>
357
+ <reference key="object" ref="430576500"/>
358
+ <reference key="parent" ref="531101154"/>
359
+ </object>
360
+ <object class="IBObjectRecord">
361
+ <int key="objectID">11</int>
362
+ <reference key="object" ref="935437333"/>
363
+ <reference key="parent" ref="531101154"/>
364
+ </object>
365
+ <object class="IBObjectRecord">
366
+ <int key="objectID">12</int>
367
+ <reference key="object" ref="680825010"/>
368
+ <reference key="parent" ref="531101154"/>
369
+ </object>
370
+ <object class="IBObjectRecord">
371
+ <int key="objectID">13</int>
372
+ <reference key="object" ref="922897160"/>
373
+ <reference key="parent" ref="531101154"/>
374
+ </object>
375
+ <object class="IBObjectRecord">
376
+ <int key="objectID">14</int>
377
+ <reference key="object" ref="582820865"/>
378
+ <reference key="parent" ref="531101154"/>
379
+ </object>
380
+ <object class="IBObjectRecord">
381
+ <int key="objectID">15</int>
382
+ <reference key="object" ref="629399114"/>
383
+ <reference key="parent" ref="531101154"/>
384
+ </object>
385
+ </object>
386
+ </object>
387
+ <object class="NSMutableDictionary" key="flattenedProperties">
388
+ <bool key="EncodedWithXMLCoder">YES</bool>
389
+ <object class="NSMutableArray" key="dict.sortedKeys">
390
+ <bool key="EncodedWithXMLCoder">YES</bool>
391
+ <string>-1.CustomClassName</string>
392
+ <string>-2.CustomClassName</string>
393
+ <string>10.IBPluginDependency</string>
394
+ <string>11.IBPluginDependency</string>
395
+ <string>12.IBPluginDependency</string>
396
+ <string>13.IBPluginDependency</string>
397
+ <string>14.IBPluginDependency</string>
398
+ <string>15.IBPluginDependency</string>
399
+ <string>6.IBEditorWindowLastContentRect</string>
400
+ <string>6.IBPluginDependency</string>
401
+ <string>8.IBPluginDependency</string>
402
+ <string>9.IBPluginDependency</string>
403
+ </object>
404
+ <object class="NSMutableArray" key="dict.values">
405
+ <bool key="EncodedWithXMLCoder">YES</bool>
406
+ <string>ToolbarViewController</string>
407
+ <string>UIResponder</string>
408
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
409
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
410
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
411
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
412
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
413
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
414
+ <string>{{0, 535}, {320, 460}}</string>
415
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
416
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
417
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
418
+ </object>
419
+ </object>
420
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
421
+ <bool key="EncodedWithXMLCoder">YES</bool>
422
+ <object class="NSArray" key="dict.sortedKeys">
423
+ <bool key="EncodedWithXMLCoder">YES</bool>
424
+ </object>
425
+ <object class="NSMutableArray" key="dict.values">
426
+ <bool key="EncodedWithXMLCoder">YES</bool>
427
+ </object>
428
+ </object>
429
+ <nil key="activeLocalization"/>
430
+ <object class="NSMutableDictionary" key="localizations">
431
+ <bool key="EncodedWithXMLCoder">YES</bool>
432
+ <object class="NSArray" key="dict.sortedKeys">
433
+ <bool key="EncodedWithXMLCoder">YES</bool>
434
+ </object>
435
+ <object class="NSMutableArray" key="dict.values">
436
+ <bool key="EncodedWithXMLCoder">YES</bool>
437
+ </object>
438
+ </object>
439
+ <nil key="sourceID"/>
440
+ <int key="maxID">24</int>
441
+ </object>
442
+ <object class="IBClassDescriber" key="IBDocument.Classes">
443
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
444
+ <bool key="EncodedWithXMLCoder">YES</bool>
445
+ <object class="IBPartialClassDescription">
446
+ <string key="className">ToolbarViewController</string>
447
+ <string key="superclassName">UIViewController</string>
448
+ <object class="NSMutableDictionary" key="actions">
449
+ <bool key="EncodedWithXMLCoder">YES</bool>
450
+ <object class="NSMutableArray" key="dict.sortedKeys">
451
+ <bool key="EncodedWithXMLCoder">YES</bool>
452
+ <string>toggleBarStyle:</string>
453
+ <string>toggleStyle:</string>
454
+ <string>toggleTintColor:</string>
455
+ </object>
456
+ <object class="NSMutableArray" key="dict.values">
457
+ <bool key="EncodedWithXMLCoder">YES</bool>
458
+ <string>id</string>
459
+ <string>id</string>
460
+ <string>id</string>
461
+ </object>
462
+ </object>
463
+ <object class="NSMutableDictionary" key="outlets">
464
+ <bool key="EncodedWithXMLCoder">YES</bool>
465
+ <object class="NSMutableArray" key="dict.sortedKeys">
466
+ <bool key="EncodedWithXMLCoder">YES</bool>
467
+ <string>barStyleSegControl</string>
468
+ <string>buttonItemStyleSegControl</string>
469
+ <string>systemButtonPicker</string>
470
+ <string>tintSwitch</string>
471
+ </object>
472
+ <object class="NSMutableArray" key="dict.values">
473
+ <bool key="EncodedWithXMLCoder">YES</bool>
474
+ <string>UISegmentedControl</string>
475
+ <string>UISegmentedControl</string>
476
+ <string>UIPickerView</string>
477
+ <string>UISwitch</string>
478
+ </object>
479
+ </object>
480
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
481
+ <string key="majorKey">IBProjectSource</string>
482
+ <string key="minorKey">ToolbarViewController.h</string>
483
+ </object>
484
+ </object>
485
+ </object>
486
+ </object>
487
+ <int key="IBDocument.localizationMode">0</int>
488
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
489
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
490
+ </data>
491
+ </archive>