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,264 @@
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="IBUISlider" id="108057446">
40
+ <reference key="NSNextResponder" ref="531101154"/>
41
+ <int key="NSvFlags">292</int>
42
+ <string key="NSFrame">{{18, 362}, {284, 23}}</string>
43
+ <reference key="NSSuperview" ref="531101154"/>
44
+ <bool key="IBUIOpaque">NO</bool>
45
+ <bool key="IBUIClipsSubviews">YES</bool>
46
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
47
+ <int key="IBUIContentHorizontalAlignment">0</int>
48
+ <int key="IBUIContentVerticalAlignment">0</int>
49
+ <float key="IBUIValue">5.000000e+00</float>
50
+ <float key="IBUIMaxValue">1.000000e+01</float>
51
+ </object>
52
+ <object class="IBUILabel" id="756825635">
53
+ <reference key="NSNextResponder" ref="531101154"/>
54
+ <int key="NSvFlags">292</int>
55
+ <string key="NSFrame">{{128, 389}, {65, 21}}</string>
56
+ <reference key="NSSuperview" ref="531101154"/>
57
+ <bool key="IBUIOpaque">NO</bool>
58
+ <bool key="IBUIClipsSubviews">YES</bool>
59
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
60
+ <string key="IBUIText">Duration</string>
61
+ <object class="NSFont" key="IBUIFont">
62
+ <string key="NSName">Helvetica</string>
63
+ <double key="NSSize">1.400000e+01</double>
64
+ <int key="NSfFlags">16</int>
65
+ </object>
66
+ <object class="NSColor" key="IBUITextColor">
67
+ <int key="NSColorSpace">1</int>
68
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
69
+ <object class="NSColorSpace" key="NSCustomColorSpace">
70
+ <int key="NSID">1</int>
71
+ </object>
72
+ </object>
73
+ <nil key="IBUIHighlightedColor"/>
74
+ <int key="IBUIBaselineAdjustment">1</int>
75
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
76
+ <int key="IBUITextAlignment">1</int>
77
+ </object>
78
+ <object class="IBUIImageView" id="630577142">
79
+ <reference key="NSNextResponder" ref="531101154"/>
80
+ <int key="NSvFlags">292</int>
81
+ <string key="NSFrame">{{20, 39}, {280, 207}}</string>
82
+ <reference key="NSSuperview" ref="531101154"/>
83
+ <bool key="IBUIOpaque">NO</bool>
84
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
85
+ <int key="IBUIContentMode">1</int>
86
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
87
+ </object>
88
+ </object>
89
+ <string key="NSFrameSize">{320, 460}</string>
90
+ <reference key="NSSuperview"/>
91
+ <object class="NSColor" key="IBUIBackgroundColor">
92
+ <int key="NSColorSpace">1</int>
93
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
94
+ </object>
95
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
96
+ </object>
97
+ </object>
98
+ <object class="IBObjectContainer" key="IBDocument.Objects">
99
+ <object class="NSMutableArray" key="connectionRecords">
100
+ <bool key="EncodedWithXMLCoder">YES</bool>
101
+ <object class="IBConnectionRecord">
102
+ <object class="IBCocoaTouchOutletConnection" key="connection">
103
+ <string key="label">view</string>
104
+ <reference key="source" ref="841351856"/>
105
+ <reference key="destination" ref="531101154"/>
106
+ </object>
107
+ <int key="connectionID">7</int>
108
+ </object>
109
+ <object class="IBConnectionRecord">
110
+ <object class="IBCocoaTouchOutletConnection" key="connection">
111
+ <string key="label">imageView</string>
112
+ <reference key="source" ref="841351856"/>
113
+ <reference key="destination" ref="630577142"/>
114
+ </object>
115
+ <int key="connectionID">13</int>
116
+ </object>
117
+ <object class="IBConnectionRecord">
118
+ <object class="IBCocoaTouchEventConnection" key="connection">
119
+ <string key="label">sliderAction:</string>
120
+ <reference key="source" ref="108057446"/>
121
+ <reference key="destination" ref="841351856"/>
122
+ <int key="IBEventType">13</int>
123
+ </object>
124
+ <int key="connectionID">14</int>
125
+ </object>
126
+ <object class="IBConnectionRecord">
127
+ <object class="IBCocoaTouchOutletConnection" key="connection">
128
+ <string key="label">slider</string>
129
+ <reference key="source" ref="841351856"/>
130
+ <reference key="destination" ref="108057446"/>
131
+ </object>
132
+ <int key="connectionID">15</int>
133
+ </object>
134
+ </object>
135
+ <object class="IBMutableOrderedSet" key="objectRecords">
136
+ <object class="NSArray" key="orderedObjects">
137
+ <bool key="EncodedWithXMLCoder">YES</bool>
138
+ <object class="IBObjectRecord">
139
+ <int key="objectID">0</int>
140
+ <object class="NSArray" key="object" id="957960031">
141
+ <bool key="EncodedWithXMLCoder">YES</bool>
142
+ </object>
143
+ <reference key="children" ref="1000"/>
144
+ <nil key="parent"/>
145
+ </object>
146
+ <object class="IBObjectRecord">
147
+ <int key="objectID">-1</int>
148
+ <reference key="object" ref="841351856"/>
149
+ <reference key="parent" ref="957960031"/>
150
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
151
+ </object>
152
+ <object class="IBObjectRecord">
153
+ <int key="objectID">-2</int>
154
+ <reference key="object" ref="371349661"/>
155
+ <reference key="parent" ref="957960031"/>
156
+ </object>
157
+ <object class="IBObjectRecord">
158
+ <int key="objectID">6</int>
159
+ <reference key="object" ref="531101154"/>
160
+ <object class="NSMutableArray" key="children">
161
+ <bool key="EncodedWithXMLCoder">YES</bool>
162
+ <reference ref="108057446"/>
163
+ <reference ref="756825635"/>
164
+ <reference ref="630577142"/>
165
+ </object>
166
+ <reference key="parent" ref="957960031"/>
167
+ </object>
168
+ <object class="IBObjectRecord">
169
+ <int key="objectID">8</int>
170
+ <reference key="object" ref="108057446"/>
171
+ <reference key="parent" ref="531101154"/>
172
+ </object>
173
+ <object class="IBObjectRecord">
174
+ <int key="objectID">9</int>
175
+ <reference key="object" ref="756825635"/>
176
+ <reference key="parent" ref="531101154"/>
177
+ </object>
178
+ <object class="IBObjectRecord">
179
+ <int key="objectID">11</int>
180
+ <reference key="object" ref="630577142"/>
181
+ <reference key="parent" ref="531101154"/>
182
+ </object>
183
+ </object>
184
+ </object>
185
+ <object class="NSMutableDictionary" key="flattenedProperties">
186
+ <bool key="EncodedWithXMLCoder">YES</bool>
187
+ <object class="NSMutableArray" key="dict.sortedKeys">
188
+ <bool key="EncodedWithXMLCoder">YES</bool>
189
+ <string>-1.CustomClassName</string>
190
+ <string>-2.CustomClassName</string>
191
+ <string>11.IBPluginDependency</string>
192
+ <string>6.IBEditorWindowLastContentRect</string>
193
+ <string>6.IBPluginDependency</string>
194
+ <string>8.IBPluginDependency</string>
195
+ <string>9.IBPluginDependency</string>
196
+ </object>
197
+ <object class="NSMutableArray" key="dict.values">
198
+ <bool key="EncodedWithXMLCoder">YES</bool>
199
+ <string>ImagesViewController</string>
200
+ <string>UIResponder</string>
201
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
202
+ <string>{{0, 535}, {320, 460}}</string>
203
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
204
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
205
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
206
+ </object>
207
+ </object>
208
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
209
+ <bool key="EncodedWithXMLCoder">YES</bool>
210
+ <object class="NSArray" key="dict.sortedKeys">
211
+ <bool key="EncodedWithXMLCoder">YES</bool>
212
+ </object>
213
+ <object class="NSMutableArray" key="dict.values">
214
+ <bool key="EncodedWithXMLCoder">YES</bool>
215
+ </object>
216
+ </object>
217
+ <nil key="activeLocalization"/>
218
+ <object class="NSMutableDictionary" key="localizations">
219
+ <bool key="EncodedWithXMLCoder">YES</bool>
220
+ <object class="NSArray" key="dict.sortedKeys">
221
+ <bool key="EncodedWithXMLCoder">YES</bool>
222
+ </object>
223
+ <object class="NSMutableArray" key="dict.values">
224
+ <bool key="EncodedWithXMLCoder">YES</bool>
225
+ </object>
226
+ </object>
227
+ <nil key="sourceID"/>
228
+ <int key="maxID">15</int>
229
+ </object>
230
+ <object class="IBClassDescriber" key="IBDocument.Classes">
231
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
232
+ <bool key="EncodedWithXMLCoder">YES</bool>
233
+ <object class="IBPartialClassDescription">
234
+ <string key="className">ImagesViewController</string>
235
+ <string key="superclassName">UIViewController</string>
236
+ <object class="NSMutableDictionary" key="actions">
237
+ <string key="NS.key.0">sliderAction:</string>
238
+ <string key="NS.object.0">id</string>
239
+ </object>
240
+ <object class="NSMutableDictionary" key="outlets">
241
+ <bool key="EncodedWithXMLCoder">YES</bool>
242
+ <object class="NSMutableArray" key="dict.sortedKeys">
243
+ <bool key="EncodedWithXMLCoder">YES</bool>
244
+ <string>imageView</string>
245
+ <string>slider</string>
246
+ </object>
247
+ <object class="NSMutableArray" key="dict.values">
248
+ <bool key="EncodedWithXMLCoder">YES</bool>
249
+ <string>UIImageView</string>
250
+ <string>UISlider</string>
251
+ </object>
252
+ </object>
253
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
254
+ <string key="majorKey">IBProjectSource</string>
255
+ <string key="minorKey">ImagesViewController.h</string>
256
+ </object>
257
+ </object>
258
+ </object>
259
+ </object>
260
+ <int key="IBDocument.localizationMode">0</int>
261
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
262
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
263
+ </data>
264
+ </archive>
@@ -0,0 +1,41 @@
1
+ "ButtonsTitle" = "Buttons";
2
+ "ControlsTitle" = "Controls";
3
+ "TextFieldTitle" = "TextFields";
4
+ "SearchBarTitle" = "SearchBar";
5
+ "TextViewTitle" = "TextView";
6
+ "SegmentTitle" = "Segment";
7
+ "ToolbarTitle" = "Toolbar";
8
+ "PickerTitle" = "Pickers";
9
+ "ImagesTitle" = "Images";
10
+ "WebTitle" = "Web";
11
+ "AlertTitle" = "Alerts";
12
+ "TransitionsTitle" = "Transitions";
13
+ "AboutTitle" = "About";
14
+
15
+ "StartTitle" = "Start";
16
+ "StopTitle" = "Stop";
17
+
18
+ "StyleTitle" = "Style";
19
+ "ChooseStyleTitle" = "Choose a UIBarStyle for the bottom toolbar:";
20
+
21
+ "FlipTitle" = "Flip Image";
22
+ "CurlTitle" = "Curl Image";
23
+
24
+ "LeftView" = "Left View:";
25
+
26
+ "ArrowButton" = "Right pointing arrow";
27
+ "MoreInfoButton" = "More info";
28
+ "AddContactButton" = "Add contact";
29
+ "StandardSwitch" = "Standard switch";
30
+ "CustomSlider" = "Custom";
31
+ "StandardSlider" = "Standard slider";
32
+ "RoundedTextField" = "Rounded";
33
+ "SecureTextField" = "Secure";
34
+ "NormalTextField" = "Normal";
35
+ "DurationSlider" = "Duration";
36
+ "URLTextField" = "URL entry";
37
+ "CheckMarkIcon" = "Check";
38
+ "SearchIcon" = "Search";
39
+ "ToolsIcon" = "Tools";
40
+ "TintSwitch" = "Tinted";
41
+
@@ -0,0 +1,306 @@
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="373042737">
31
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
32
+ </object>
33
+ <object class="IBUIWindow" id="380026005">
34
+ <nil key="NSNextResponder"/>
35
+ <int key="NSvFlags">1292</int>
36
+ <object class="NSPSMatrix" key="NSFrameMatrix"/>
37
+ <string key="NSFrameSize">{320, 480}</string>
38
+ <object class="NSColor" key="IBUIBackgroundColor" id="106200061">
39
+ <int key="NSColorSpace">1</int>
40
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
41
+ </object>
42
+ <bool key="IBUIOpaque">NO</bool>
43
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
44
+ </object>
45
+ <object class="IBUICustomObject" id="452452442"/>
46
+ <object class="IBUINavigationController" id="827005148">
47
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
48
+ <object class="IBUINavigationBar" key="IBUINavigationBar" id="131129230">
49
+ <nil key="NSNextResponder"/>
50
+ <int key="NSvFlags">256</int>
51
+ <string key="NSFrameSize">{0, 0}</string>
52
+ <bool key="IBUIOpaque">NO</bool>
53
+ <bool key="IBUIClipsSubviews">YES</bool>
54
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
55
+ </object>
56
+ <object class="NSMutableArray" key="IBUIViewControllers">
57
+ <bool key="EncodedWithXMLCoder">YES</bool>
58
+ <object class="IBUIViewController" id="1018912514">
59
+ <object class="IBUITableView" key="IBUIView" id="72559514">
60
+ <nil key="NSNextResponder"/>
61
+ <int key="NSvFlags">274</int>
62
+ <string key="NSFrameSize">{320, 416}</string>
63
+ <reference key="IBUIBackgroundColor" ref="106200061"/>
64
+ <bool key="IBUIOpaque">NO</bool>
65
+ <bool key="IBUIClipsSubviews">YES</bool>
66
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
67
+ <int key="IBUISeparatorStyle">1</int>
68
+ <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
69
+ <bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
70
+ <float key="IBUIRowHeight">4.400000e+01</float>
71
+ <float key="IBUISectionHeaderHeight">2.700000e+01</float>
72
+ <float key="IBUISectionFooterHeight">2.700000e+01</float>
73
+ </object>
74
+ <object class="IBUINavigationItem" key="IBUINavigationItem" id="201411648">
75
+ <string key="IBUITitle">UICatalog</string>
76
+ </object>
77
+ <reference key="IBUIParentViewController" ref="827005148"/>
78
+ </object>
79
+ </object>
80
+ </object>
81
+ </object>
82
+ <object class="IBObjectContainer" key="IBDocument.Objects">
83
+ <object class="NSMutableArray" key="connectionRecords">
84
+ <bool key="EncodedWithXMLCoder">YES</bool>
85
+ <object class="IBConnectionRecord">
86
+ <object class="IBCocoaTouchOutletConnection" key="connection">
87
+ <string key="label">delegate</string>
88
+ <reference key="source" ref="841351856"/>
89
+ <reference key="destination" ref="452452442"/>
90
+ </object>
91
+ <int key="connectionID">4</int>
92
+ </object>
93
+ <object class="IBConnectionRecord">
94
+ <object class="IBCocoaTouchOutletConnection" key="connection">
95
+ <string key="label">window</string>
96
+ <reference key="source" ref="452452442"/>
97
+ <reference key="destination" ref="380026005"/>
98
+ </object>
99
+ <int key="connectionID">5</int>
100
+ </object>
101
+ <object class="IBConnectionRecord">
102
+ <object class="IBCocoaTouchOutletConnection" key="connection">
103
+ <string key="label">navigationController</string>
104
+ <reference key="source" ref="452452442"/>
105
+ <reference key="destination" ref="827005148"/>
106
+ </object>
107
+ <int key="connectionID">10</int>
108
+ </object>
109
+ <object class="IBConnectionRecord">
110
+ <object class="IBCocoaTouchOutletConnection" key="connection">
111
+ <string key="label">dataSource</string>
112
+ <reference key="source" ref="72559514"/>
113
+ <reference key="destination" ref="1018912514"/>
114
+ </object>
115
+ <int key="connectionID">14</int>
116
+ </object>
117
+ <object class="IBConnectionRecord">
118
+ <object class="IBCocoaTouchOutletConnection" key="connection">
119
+ <string key="label">delegate</string>
120
+ <reference key="source" ref="72559514"/>
121
+ <reference key="destination" ref="1018912514"/>
122
+ </object>
123
+ <int key="connectionID">15</int>
124
+ </object>
125
+ </object>
126
+ <object class="IBMutableOrderedSet" key="objectRecords">
127
+ <object class="NSArray" key="orderedObjects">
128
+ <bool key="EncodedWithXMLCoder">YES</bool>
129
+ <object class="IBObjectRecord">
130
+ <int key="objectID">0</int>
131
+ <object class="NSArray" key="object" id="957960031">
132
+ <bool key="EncodedWithXMLCoder">YES</bool>
133
+ </object>
134
+ <reference key="children" ref="1000"/>
135
+ <nil key="parent"/>
136
+ </object>
137
+ <object class="IBObjectRecord">
138
+ <int key="objectID">2</int>
139
+ <reference key="object" ref="380026005"/>
140
+ <reference key="parent" ref="957960031"/>
141
+ </object>
142
+ <object class="IBObjectRecord">
143
+ <int key="objectID">-1</int>
144
+ <reference key="object" ref="841351856"/>
145
+ <reference key="parent" ref="957960031"/>
146
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
147
+ </object>
148
+ <object class="IBObjectRecord">
149
+ <int key="objectID">3</int>
150
+ <reference key="object" ref="452452442"/>
151
+ <reference key="parent" ref="957960031"/>
152
+ <string key="objectName">AppDelegate</string>
153
+ </object>
154
+ <object class="IBObjectRecord">
155
+ <int key="objectID">-2</int>
156
+ <reference key="object" ref="373042737"/>
157
+ <reference key="parent" ref="957960031"/>
158
+ </object>
159
+ <object class="IBObjectRecord">
160
+ <int key="objectID">6</int>
161
+ <reference key="object" ref="827005148"/>
162
+ <object class="NSMutableArray" key="children">
163
+ <bool key="EncodedWithXMLCoder">YES</bool>
164
+ <reference ref="1018912514"/>
165
+ <reference ref="131129230"/>
166
+ </object>
167
+ <reference key="parent" ref="957960031"/>
168
+ </object>
169
+ <object class="IBObjectRecord">
170
+ <int key="objectID">7</int>
171
+ <reference key="object" ref="1018912514"/>
172
+ <object class="NSMutableArray" key="children">
173
+ <bool key="EncodedWithXMLCoder">YES</bool>
174
+ <reference ref="201411648"/>
175
+ <reference ref="72559514"/>
176
+ </object>
177
+ <reference key="parent" ref="827005148"/>
178
+ </object>
179
+ <object class="IBObjectRecord">
180
+ <int key="objectID">8</int>
181
+ <reference key="object" ref="131129230"/>
182
+ <reference key="parent" ref="827005148"/>
183
+ </object>
184
+ <object class="IBObjectRecord">
185
+ <int key="objectID">9</int>
186
+ <reference key="object" ref="201411648"/>
187
+ <object class="NSMutableArray" key="children">
188
+ <bool key="EncodedWithXMLCoder">YES</bool>
189
+ </object>
190
+ <reference key="parent" ref="1018912514"/>
191
+ </object>
192
+ <object class="IBObjectRecord">
193
+ <int key="objectID">13</int>
194
+ <reference key="object" ref="72559514"/>
195
+ <reference key="parent" ref="1018912514"/>
196
+ </object>
197
+ </object>
198
+ </object>
199
+ <object class="NSMutableDictionary" key="flattenedProperties">
200
+ <bool key="EncodedWithXMLCoder">YES</bool>
201
+ <object class="NSMutableArray" key="dict.sortedKeys">
202
+ <bool key="EncodedWithXMLCoder">YES</bool>
203
+ <string>-1.CustomClassName</string>
204
+ <string>-2.CustomClassName</string>
205
+ <string>13.IBPluginDependency</string>
206
+ <string>2.IBAttributePlaceholdersKey</string>
207
+ <string>2.IBEditorWindowLastContentRect</string>
208
+ <string>2.IBPluginDependency</string>
209
+ <string>2.UIWindow.visibleAtLaunch</string>
210
+ <string>3.CustomClassName</string>
211
+ <string>3.IBPluginDependency</string>
212
+ <string>6.IBEditorWindowLastContentRect</string>
213
+ <string>6.IBPluginDependency</string>
214
+ <string>7.CustomClassName</string>
215
+ <string>7.IBPluginDependency</string>
216
+ <string>8.IBPluginDependency</string>
217
+ <string>9.IBPluginDependency</string>
218
+ </object>
219
+ <object class="NSMutableArray" key="dict.values">
220
+ <bool key="EncodedWithXMLCoder">YES</bool>
221
+ <string>UIApplication</string>
222
+ <string>UIResponder</string>
223
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
224
+ <object class="NSMutableDictionary">
225
+ <bool key="EncodedWithXMLCoder">YES</bool>
226
+ <object class="NSArray" key="dict.sortedKeys">
227
+ <bool key="EncodedWithXMLCoder">YES</bool>
228
+ </object>
229
+ <object class="NSMutableArray" key="dict.values">
230
+ <bool key="EncodedWithXMLCoder">YES</bool>
231
+ </object>
232
+ </object>
233
+ <string>{{56, 499}, {320, 480}}</string>
234
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
235
+ <integer value="1"/>
236
+ <string>AppDelegate</string>
237
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
238
+ <string>{{420, 59}, {320, 480}}</string>
239
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
240
+ <string>MainViewController</string>
241
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
242
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
243
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
244
+ </object>
245
+ </object>
246
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
247
+ <bool key="EncodedWithXMLCoder">YES</bool>
248
+ <object class="NSArray" key="dict.sortedKeys">
249
+ <bool key="EncodedWithXMLCoder">YES</bool>
250
+ </object>
251
+ <object class="NSMutableArray" key="dict.values">
252
+ <bool key="EncodedWithXMLCoder">YES</bool>
253
+ </object>
254
+ </object>
255
+ <nil key="activeLocalization"/>
256
+ <object class="NSMutableDictionary" key="localizations">
257
+ <bool key="EncodedWithXMLCoder">YES</bool>
258
+ <object class="NSArray" key="dict.sortedKeys">
259
+ <bool key="EncodedWithXMLCoder">YES</bool>
260
+ </object>
261
+ <object class="NSMutableArray" key="dict.values">
262
+ <bool key="EncodedWithXMLCoder">YES</bool>
263
+ </object>
264
+ </object>
265
+ <nil key="sourceID"/>
266
+ <int key="maxID">17</int>
267
+ </object>
268
+ <object class="IBClassDescriber" key="IBDocument.Classes">
269
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
270
+ <bool key="EncodedWithXMLCoder">YES</bool>
271
+ <object class="IBPartialClassDescription">
272
+ <string key="className">AppDelegate</string>
273
+ <string key="superclassName">NSObject</string>
274
+ <object class="NSMutableDictionary" key="outlets">
275
+ <bool key="EncodedWithXMLCoder">YES</bool>
276
+ <object class="NSMutableArray" key="dict.sortedKeys">
277
+ <bool key="EncodedWithXMLCoder">YES</bool>
278
+ <string>navigationController</string>
279
+ <string>window</string>
280
+ </object>
281
+ <object class="NSMutableArray" key="dict.values">
282
+ <bool key="EncodedWithXMLCoder">YES</bool>
283
+ <string>UINavigationController</string>
284
+ <string>UIWindow</string>
285
+ </object>
286
+ </object>
287
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
288
+ <string key="majorKey">IBProjectSource</string>
289
+ <string key="minorKey">AppDelegate.h</string>
290
+ </object>
291
+ </object>
292
+ <object class="IBPartialClassDescription">
293
+ <string key="className">MainViewController</string>
294
+ <string key="superclassName">UITableViewController</string>
295
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
296
+ <string key="majorKey">IBProjectSource</string>
297
+ <string key="minorKey">MainViewController.h</string>
298
+ </object>
299
+ </object>
300
+ </object>
301
+ </object>
302
+ <int key="IBDocument.localizationMode">0</int>
303
+ <string key="IBDocument.LastKnownRelativeProjectPath">../UICatalog.xcodeproj</string>
304
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
305
+ </data>
306
+ </archive>