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,520 +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="34"/>
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="815241450">
36
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
37
- </object>
38
- <object class="IBUIView" id="883825266">
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="IBUIButton" id="558454645">
44
- <reference key="NSNextResponder" ref="883825266"/>
45
- <int key="NSvFlags">292</int>
46
- <string key="NSFrame">{{282, 421}, {18, 19}}</string>
47
- <reference key="NSSuperview" ref="883825266"/>
48
- <bool key="IBUIOpaque">NO</bool>
49
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
50
- <object class="IBUIAccessibilityConfiguration" key="IBUIAccessibilityConfiguration">
51
- <string key="IBUIAccessibilityLabel">About</string>
52
- </object>
53
- <int key="IBUIContentHorizontalAlignment">0</int>
54
- <int key="IBUIContentVerticalAlignment">0</int>
55
- <object class="NSFont" key="IBUIFont" id="345060689">
56
- <string key="NSName">Helvetica-Bold</string>
57
- <double key="NSSize">15</double>
58
- <int key="NSfFlags">16</int>
59
- </object>
60
- <int key="IBUIButtonType">3</int>
61
- <bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
62
- <object class="NSColor" key="IBUIHighlightedTitleColor" id="950591743">
63
- <int key="NSColorSpace">1</int>
64
- <bytes key="NSRGB">MSAxIDEAA</bytes>
65
- </object>
66
- <object class="NSColor" key="IBUINormalTitleColor">
67
- <int key="NSColorSpace">1</int>
68
- <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
69
- </object>
70
- <object class="NSColor" key="IBUINormalTitleShadowColor">
71
- <int key="NSColorSpace">3</int>
72
- <bytes key="NSWhite">MAA</bytes>
73
- </object>
74
- </object>
75
- <object class="IBUILabel" id="952028500">
76
- <reference key="NSNextResponder" ref="883825266"/>
77
- <int key="NSvFlags">292</int>
78
- <string key="NSFrame">{{98, 122}, {123, 57}}</string>
79
- <reference key="NSSuperview" ref="883825266"/>
80
- <bool key="IBUIOpaque">NO</bool>
81
- <bool key="IBUIClipsSubviews">YES</bool>
82
- <bool key="IBUIUserInteractionEnabled">NO</bool>
83
- <string key="IBUIText">iCuke</string>
84
- <object class="NSFont" key="IBUIFont">
85
- <string key="NSName">Helvetica</string>
86
- <double key="NSSize">48</double>
87
- <int key="NSfFlags">16</int>
88
- </object>
89
- <reference key="IBUITextColor" ref="950591743"/>
90
- <nil key="IBUIHighlightedColor"/>
91
- <int key="IBUIBaselineAdjustment">1</int>
92
- <float key="IBUIMinimumFontSize">10</float>
93
- </object>
94
- <object class="IBUITextField" id="263077905">
95
- <reference key="NSNextResponder" ref="883825266"/>
96
- <int key="NSvFlags">292</int>
97
- <string key="NSFrame">{{45, 187}, {229, 31}}</string>
98
- <reference key="NSSuperview" ref="883825266"/>
99
- <bool key="IBUIOpaque">NO</bool>
100
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
101
- <object class="IBUIAccessibilityConfiguration" key="IBUIAccessibilityConfiguration">
102
- <string key="IBUIAccessibilityLabel">Input</string>
103
- </object>
104
- <int key="IBUIContentVerticalAlignment">0</int>
105
- <string key="IBUIText"/>
106
- <int key="IBUIBorderStyle">3</int>
107
- <object class="NSColor" key="IBUITextColor">
108
- <int key="NSColorSpace">3</int>
109
- <bytes key="NSWhite">MAA</bytes>
110
- <object class="NSColorSpace" key="NSCustomColorSpace" id="92842001">
111
- <int key="NSID">2</int>
112
- </object>
113
- </object>
114
- <bool key="IBUIClearsOnBeginEditing">YES</bool>
115
- <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
116
- <float key="IBUIMinimumFontSize">17</float>
117
- <object class="IBUITextInputTraits" key="IBUITextInputTraits"/>
118
- </object>
119
- <object class="IBUIButton" id="45833405">
120
- <reference key="NSNextResponder" ref="883825266"/>
121
- <int key="NSvFlags">292</int>
122
- <string key="NSFrame">{{123, 226}, {72, 37}}</string>
123
- <reference key="NSSuperview" ref="883825266"/>
124
- <bool key="IBUIOpaque">NO</bool>
125
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
126
- <int key="IBUIContentHorizontalAlignment">0</int>
127
- <int key="IBUIContentVerticalAlignment">0</int>
128
- <reference key="IBUIFont" ref="345060689"/>
129
- <int key="IBUIButtonType">1</int>
130
- <string key="IBUINormalTitle">Go!</string>
131
- <object class="NSColor" key="IBUIHighlightedTitleColor">
132
- <int key="NSColorSpace">3</int>
133
- <bytes key="NSWhite">MQA</bytes>
134
- </object>
135
- <object class="NSColor" key="IBUINormalTitleColor">
136
- <int key="NSColorSpace">1</int>
137
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
138
- </object>
139
- <object class="NSColor" key="IBUINormalTitleShadowColor">
140
- <int key="NSColorSpace">3</int>
141
- <bytes key="NSWhite">MC41AA</bytes>
142
- </object>
143
- </object>
144
- </object>
145
- <string key="NSFrameSize">{320, 460}</string>
146
- <reference key="NSSuperview"/>
147
- <object class="NSColor" key="IBUIBackgroundColor">
148
- <int key="NSColorSpace">3</int>
149
- <bytes key="NSWhite">MC4yNQA</bytes>
150
- <reference key="NSCustomColorSpace" ref="92842001"/>
151
- </object>
152
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
153
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
154
- </object>
155
- </object>
156
- <object class="IBObjectContainer" key="IBDocument.Objects">
157
- <object class="NSMutableArray" key="connectionRecords">
158
- <bool key="EncodedWithXMLCoder">YES</bool>
159
- <object class="IBConnectionRecord">
160
- <object class="IBCocoaTouchOutletConnection" key="connection">
161
- <string key="label">view</string>
162
- <reference key="source" ref="372490531"/>
163
- <reference key="destination" ref="883825266"/>
164
- </object>
165
- <int key="connectionID">35</int>
166
- </object>
167
- <object class="IBConnectionRecord">
168
- <object class="IBCocoaTouchEventConnection" key="connection">
169
- <string key="label">showInfo</string>
170
- <reference key="source" ref="558454645"/>
171
- <reference key="destination" ref="372490531"/>
172
- <int key="IBEventType">7</int>
173
- </object>
174
- <int key="connectionID">37</int>
175
- </object>
176
- </object>
177
- <object class="IBMutableOrderedSet" key="objectRecords">
178
- <object class="NSArray" key="orderedObjects">
179
- <bool key="EncodedWithXMLCoder">YES</bool>
180
- <object class="IBObjectRecord">
181
- <int key="objectID">0</int>
182
- <reference key="object" ref="0"/>
183
- <reference key="children" ref="1000"/>
184
- <nil key="parent"/>
185
- </object>
186
- <object class="IBObjectRecord">
187
- <int key="objectID">-1</int>
188
- <reference key="object" ref="372490531"/>
189
- <reference key="parent" ref="0"/>
190
- <string key="objectName">File's Owner</string>
191
- </object>
192
- <object class="IBObjectRecord">
193
- <int key="objectID">-2</int>
194
- <reference key="object" ref="815241450"/>
195
- <reference key="parent" ref="0"/>
196
- </object>
197
- <object class="IBObjectRecord">
198
- <int key="objectID">34</int>
199
- <reference key="object" ref="883825266"/>
200
- <object class="NSMutableArray" key="children">
201
- <bool key="EncodedWithXMLCoder">YES</bool>
202
- <reference ref="558454645"/>
203
- <reference ref="952028500"/>
204
- <reference ref="263077905"/>
205
- <reference ref="45833405"/>
206
- </object>
207
- <reference key="parent" ref="0"/>
208
- </object>
209
- <object class="IBObjectRecord">
210
- <int key="objectID">36</int>
211
- <reference key="object" ref="558454645"/>
212
- <reference key="parent" ref="883825266"/>
213
- </object>
214
- <object class="IBObjectRecord">
215
- <int key="objectID">38</int>
216
- <reference key="object" ref="952028500"/>
217
- <reference key="parent" ref="883825266"/>
218
- </object>
219
- <object class="IBObjectRecord">
220
- <int key="objectID">39</int>
221
- <reference key="object" ref="263077905"/>
222
- <reference key="parent" ref="883825266"/>
223
- </object>
224
- <object class="IBObjectRecord">
225
- <int key="objectID">40</int>
226
- <reference key="object" ref="45833405"/>
227
- <reference key="parent" ref="883825266"/>
228
- </object>
229
- </object>
230
- </object>
231
- <object class="NSMutableDictionary" key="flattenedProperties">
232
- <bool key="EncodedWithXMLCoder">YES</bool>
233
- <object class="NSArray" key="dict.sortedKeys">
234
- <bool key="EncodedWithXMLCoder">YES</bool>
235
- <string>-1.CustomClassName</string>
236
- <string>-2.CustomClassName</string>
237
- <string>34.CustomClassName</string>
238
- <string>34.IBEditorWindowLastContentRect</string>
239
- <string>34.IBPluginDependency</string>
240
- <string>36.IBPluginDependency</string>
241
- <string>38.IBPluginDependency</string>
242
- <string>39.IBPluginDependency</string>
243
- <string>40.IBPluginDependency</string>
244
- </object>
245
- <object class="NSMutableArray" key="dict.values">
246
- <bool key="EncodedWithXMLCoder">YES</bool>
247
- <string>MainViewController</string>
248
- <string>UIResponder</string>
249
- <string>SniffingView</string>
250
- <string>{{510, 216}, {320, 480}}</string>
251
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
252
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
253
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
254
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
255
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
256
- </object>
257
- </object>
258
- <object class="NSMutableDictionary" key="unlocalizedProperties">
259
- <bool key="EncodedWithXMLCoder">YES</bool>
260
- <reference key="dict.sortedKeys" ref="0"/>
261
- <object class="NSMutableArray" key="dict.values">
262
- <bool key="EncodedWithXMLCoder">YES</bool>
263
- </object>
264
- </object>
265
- <nil key="activeLocalization"/>
266
- <object class="NSMutableDictionary" key="localizations">
267
- <bool key="EncodedWithXMLCoder">YES</bool>
268
- <reference key="dict.sortedKeys" ref="0"/>
269
- <object class="NSMutableArray" key="dict.values">
270
- <bool key="EncodedWithXMLCoder">YES</bool>
271
- </object>
272
- </object>
273
- <nil key="sourceID"/>
274
- <int key="maxID">40</int>
275
- </object>
276
- <object class="IBClassDescriber" key="IBDocument.Classes">
277
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
278
- <bool key="EncodedWithXMLCoder">YES</bool>
279
- <object class="IBPartialClassDescription">
280
- <string key="className">MainViewController</string>
281
- <string key="superclassName">UIViewController</string>
282
- <object class="NSMutableDictionary" key="actions">
283
- <string key="NS.key.0">showInfo</string>
284
- <string key="NS.object.0">id</string>
285
- </object>
286
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
287
- <string key="majorKey">IBProjectSource</string>
288
- <string key="minorKey">Classes/MainViewController.h</string>
289
- </object>
290
- </object>
291
- <object class="IBPartialClassDescription">
292
- <string key="className">SniffingView</string>
293
- <string key="superclassName">UIView</string>
294
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
295
- <string key="majorKey">IBProjectSource</string>
296
- <string key="minorKey">SniffingView.h</string>
297
- </object>
298
- </object>
299
- </object>
300
- <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
301
- <bool key="EncodedWithXMLCoder">YES</bool>
302
- <object class="IBPartialClassDescription">
303
- <string key="className">NSObject</string>
304
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
305
- <string key="majorKey">IBFrameworkSource</string>
306
- <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
307
- </object>
308
- </object>
309
- <object class="IBPartialClassDescription">
310
- <string key="className">NSObject</string>
311
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
312
- <string key="majorKey">IBFrameworkSource</string>
313
- <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
314
- </object>
315
- </object>
316
- <object class="IBPartialClassDescription">
317
- <string key="className">NSObject</string>
318
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
319
- <string key="majorKey">IBFrameworkSource</string>
320
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
321
- </object>
322
- </object>
323
- <object class="IBPartialClassDescription">
324
- <string key="className">NSObject</string>
325
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
326
- <string key="majorKey">IBFrameworkSource</string>
327
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
328
- </object>
329
- </object>
330
- <object class="IBPartialClassDescription">
331
- <string key="className">NSObject</string>
332
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
333
- <string key="majorKey">IBFrameworkSource</string>
334
- <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
335
- </object>
336
- </object>
337
- <object class="IBPartialClassDescription">
338
- <string key="className">NSObject</string>
339
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
340
- <string key="majorKey">IBFrameworkSource</string>
341
- <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
342
- </object>
343
- </object>
344
- <object class="IBPartialClassDescription">
345
- <string key="className">NSObject</string>
346
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
347
- <string key="majorKey">IBFrameworkSource</string>
348
- <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
349
- </object>
350
- </object>
351
- <object class="IBPartialClassDescription">
352
- <string key="className">NSObject</string>
353
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
354
- <string key="majorKey">IBFrameworkSource</string>
355
- <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
356
- </object>
357
- </object>
358
- <object class="IBPartialClassDescription">
359
- <string key="className">NSObject</string>
360
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
361
- <string key="majorKey">IBFrameworkSource</string>
362
- <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
363
- </object>
364
- </object>
365
- <object class="IBPartialClassDescription">
366
- <string key="className">NSObject</string>
367
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
368
- <string key="majorKey">IBFrameworkSource</string>
369
- <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
370
- </object>
371
- </object>
372
- <object class="IBPartialClassDescription">
373
- <string key="className">NSObject</string>
374
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
375
- <string key="majorKey">IBFrameworkSource</string>
376
- <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
377
- </object>
378
- </object>
379
- <object class="IBPartialClassDescription">
380
- <string key="className">NSObject</string>
381
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
382
- <string key="majorKey">IBFrameworkSource</string>
383
- <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
384
- </object>
385
- </object>
386
- <object class="IBPartialClassDescription">
387
- <string key="className">NSObject</string>
388
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
389
- <string key="majorKey">IBFrameworkSource</string>
390
- <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
391
- </object>
392
- </object>
393
- <object class="IBPartialClassDescription">
394
- <string key="className">NSObject</string>
395
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
396
- <string key="majorKey">IBFrameworkSource</string>
397
- <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
398
- </object>
399
- </object>
400
- <object class="IBPartialClassDescription">
401
- <string key="className">NSObject</string>
402
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
403
- <string key="majorKey">IBFrameworkSource</string>
404
- <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
405
- </object>
406
- </object>
407
- <object class="IBPartialClassDescription">
408
- <string key="className">NSObject</string>
409
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
410
- <string key="majorKey">IBFrameworkSource</string>
411
- <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
412
- </object>
413
- </object>
414
- <object class="IBPartialClassDescription">
415
- <string key="className">NSObject</string>
416
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="744224111">
417
- <string key="majorKey">IBFrameworkSource</string>
418
- <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
419
- </object>
420
- </object>
421
- <object class="IBPartialClassDescription">
422
- <string key="className">UIButton</string>
423
- <string key="superclassName">UIControl</string>
424
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
425
- <string key="majorKey">IBFrameworkSource</string>
426
- <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
427
- </object>
428
- </object>
429
- <object class="IBPartialClassDescription">
430
- <string key="className">UIControl</string>
431
- <string key="superclassName">UIView</string>
432
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
433
- <string key="majorKey">IBFrameworkSource</string>
434
- <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
435
- </object>
436
- </object>
437
- <object class="IBPartialClassDescription">
438
- <string key="className">UILabel</string>
439
- <string key="superclassName">UIView</string>
440
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
441
- <string key="majorKey">IBFrameworkSource</string>
442
- <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
443
- </object>
444
- </object>
445
- <object class="IBPartialClassDescription">
446
- <string key="className">UIResponder</string>
447
- <string key="superclassName">NSObject</string>
448
- <reference key="sourceIdentifier" ref="744224111"/>
449
- </object>
450
- <object class="IBPartialClassDescription">
451
- <string key="className">UISearchBar</string>
452
- <string key="superclassName">UIView</string>
453
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
454
- <string key="majorKey">IBFrameworkSource</string>
455
- <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
456
- </object>
457
- </object>
458
- <object class="IBPartialClassDescription">
459
- <string key="className">UISearchDisplayController</string>
460
- <string key="superclassName">NSObject</string>
461
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
462
- <string key="majorKey">IBFrameworkSource</string>
463
- <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
464
- </object>
465
- </object>
466
- <object class="IBPartialClassDescription">
467
- <string key="className">UITextField</string>
468
- <string key="superclassName">UIControl</string>
469
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="338057388">
470
- <string key="majorKey">IBFrameworkSource</string>
471
- <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
472
- </object>
473
- </object>
474
- <object class="IBPartialClassDescription">
475
- <string key="className">UIView</string>
476
- <reference key="sourceIdentifier" ref="338057388"/>
477
- </object>
478
- <object class="IBPartialClassDescription">
479
- <string key="className">UIView</string>
480
- <string key="superclassName">UIResponder</string>
481
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
482
- <string key="majorKey">IBFrameworkSource</string>
483
- <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
484
- </object>
485
- </object>
486
- <object class="IBPartialClassDescription">
487
- <string key="className">UIViewController</string>
488
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
489
- <string key="majorKey">IBFrameworkSource</string>
490
- <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
491
- </object>
492
- </object>
493
- <object class="IBPartialClassDescription">
494
- <string key="className">UIViewController</string>
495
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
496
- <string key="majorKey">IBFrameworkSource</string>
497
- <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
498
- </object>
499
- </object>
500
- <object class="IBPartialClassDescription">
501
- <string key="className">UIViewController</string>
502
- <string key="superclassName">UIResponder</string>
503
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
504
- <string key="majorKey">IBFrameworkSource</string>
505
- <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
506
- </object>
507
- </object>
508
- </object>
509
- </object>
510
- <int key="IBDocument.localizationMode">0</int>
511
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
512
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
513
- <integer value="3100" key="NS.object.0"/>
514
- </object>
515
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
516
- <string key="IBDocument.LastKnownRelativeProjectPath">iCuke.xcodeproj</string>
517
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
518
- <string key="IBCocoaTouchPluginVersion">3.1</string>
519
- </data>
520
- </archive>