furter 0.0.3.1 → 0.0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.travis.yml +5 -4
- data/Changelog +3 -0
- data/Gemfile +1 -0
- data/README.md +3 -1
- data/app/FurterApp/Frank/frank.xcconfig +15 -0
- data/app/FurterApp/Frank/frankify.xcconfig +3 -3
- data/app/FurterApp/Frank/libCocoaAsyncSocket.a +0 -0
- data/app/FurterApp/Frank/libCocoaAsyncSocketMac.a +0 -0
- data/app/FurterApp/Frank/libCocoaHTTPServer.a +0 -0
- data/app/FurterApp/Frank/libCocoaHTTPServerMac.a +0 -0
- data/app/FurterApp/Frank/libCocoaLumberjack.a +0 -0
- data/app/FurterApp/Frank/libCocoaLumberjackMac.a +0 -0
- data/app/FurterApp/Frank/libFrank.a +0 -0
- data/app/FurterApp/Frank/libFrankMac.a +0 -0
- data/app/FurterApp/Frank/libShelley.a +0 -0
- data/app/FurterApp/FurterApp.xcodeproj/project.pbxproj +365 -807
- data/app/FurterApp/FurterApp/DetailViewController.h +3 -0
- data/app/FurterApp/FurterApp/DetailViewController.m +8 -0
- data/app/FurterApp/FurterApp/en.lproj/MainStoryboard_iPad.storyboard +18 -1
- data/app/FurterApp/TablesViewController.h +22 -0
- data/app/FurterApp/TablesViewController.m +133 -0
- data/app/FurterApp/TablesViewController.xib +577 -0
- data/features/label.feature +2 -1
- data/features/step_definitions/label_steps.rb +2 -2
- data/features/step_definitions/table_steps.rb +3 -0
- data/features/support/env.rb +4 -0
- data/features/support/screens/detail.rb +1 -0
- data/features/support/screens/tables.rb +10 -0
- data/features/table.feature +8 -0
- data/furter.gemspec +2 -1
- data/lib/furter/accessors.rb +5 -1
- data/lib/furter/accessors/table.rb +3 -1
- data/lib/furter/accessors/view.rb +1 -0
- data/lib/furter/version.rb +1 -1
- data/spec/lib/furter/accessors/table_spec.rb +20 -0
- data/spec/spec_helper.rb +2 -0
- metadata +33 -25
@@ -19,6 +19,9 @@
|
|
19
19
|
|
20
20
|
@property (strong, nonatomic) id detailItem;
|
21
21
|
|
22
|
+
@property (weak, nonatomic) IBOutlet UIButton *tablesButton;
|
23
|
+
- (IBAction)showTables:(id)sender;
|
24
|
+
|
22
25
|
- (IBAction)onLabeledButtonClicked:(id)sender;
|
23
26
|
@property (weak, nonatomic) IBOutlet UILabel *detailDescriptionLabel;
|
24
27
|
@end
|
@@ -7,6 +7,7 @@
|
|
7
7
|
//
|
8
8
|
|
9
9
|
#import "DetailViewController.h"
|
10
|
+
#import "TablesViewController.h"
|
10
11
|
|
11
12
|
@interface DetailViewController ()
|
12
13
|
@property (strong, nonatomic) UIPopoverController *masterPopoverController;
|
@@ -76,7 +77,14 @@
|
|
76
77
|
- (IBAction)someButtonClick:(id)sender {
|
77
78
|
[self.labelTextField setText:@"The button was clicked!"];
|
78
79
|
}
|
80
|
+
|
79
81
|
- (IBAction)onLabeledButtonClicked:(id)sender {
|
80
82
|
[self.labelTextField setText:@"The labeled button was clicked!"];
|
81
83
|
}
|
84
|
+
|
85
|
+
-(void)showTables:(id)sender{
|
86
|
+
|
87
|
+
TablesViewController *tablesViewController = [[TablesViewController alloc] init];
|
88
|
+
[[self navigationController] pushViewController:tablesViewController animated:YES];
|
89
|
+
}
|
82
90
|
@end
|
@@ -113,10 +113,24 @@
|
|
113
113
|
<constraint firstAttribute="width" constant="288" id="dCS-tQ-uoe"/>
|
114
114
|
</constraints>
|
115
115
|
</slider>
|
116
|
+
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yGC-o4-z18">
|
117
|
+
<fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
|
118
|
+
<state key="normal" title="Tables">
|
119
|
+
<color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="calibratedRGB"/>
|
120
|
+
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
|
121
|
+
</state>
|
122
|
+
<state key="highlighted">
|
123
|
+
<color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
|
124
|
+
</state>
|
125
|
+
<connections>
|
126
|
+
<action selector="showTables:" destination="4" eventType="touchUpInside" id="sVv-C0-lie"/>
|
127
|
+
</connections>
|
128
|
+
</button>
|
116
129
|
</subviews>
|
117
130
|
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
118
131
|
<constraints>
|
119
132
|
<constraint firstItem="HNa-e4-2od" firstAttribute="leading" secondItem="mEd-bW-xG3" secondAttribute="leading" type="default" id="078-hV-XP8"/>
|
133
|
+
<constraint firstItem="yGC-o4-z18" firstAttribute="leading" secondItem="n4M-Kb-ePv" secondAttribute="leading" type="default" id="0P7-h0-m30"/>
|
120
134
|
<constraint firstItem="79f-eU-bDt" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="20" symbolic="YES" type="default" id="1JC-Aj-NzB"/>
|
121
135
|
<constraint firstItem="n4M-Kb-ePv" firstAttribute="top" secondItem="6Hu-uu-EUY" secondAttribute="bottom" constant="8" symbolic="YES" type="default" id="9II-fH-f7K"/>
|
122
136
|
<constraint firstAttribute="trailing" secondItem="27" secondAttribute="trailing" constant="20" symbolic="YES" type="default" id="CON-Cb-dBe"/>
|
@@ -127,6 +141,7 @@
|
|
127
141
|
<constraint firstItem="27" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="20" symbolic="YES" type="default" id="LAk-gc-aCl"/>
|
128
142
|
<constraint firstItem="nbu-fr-Znd" firstAttribute="baseline" secondItem="HNa-e4-2od" secondAttribute="baseline" type="default" id="M5i-yy-h0N"/>
|
129
143
|
<constraint firstItem="6Hu-uu-EUY" firstAttribute="top" secondItem="MgB-Y1-P3J" secondAttribute="bottom" constant="8" symbolic="YES" type="default" id="MWf-xM-HxM"/>
|
144
|
+
<constraint firstItem="yGC-o4-z18" firstAttribute="top" secondItem="n4M-Kb-ePv" secondAttribute="bottom" constant="8" symbolic="YES" type="default" id="Obt-JM-krp"/>
|
130
145
|
<constraint firstItem="nbu-fr-Znd" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="20" symbolic="YES" type="default" id="RZE-cI-a2V"/>
|
131
146
|
<constraint firstItem="MgB-Y1-P3J" firstAttribute="leading" secondItem="HNa-e4-2od" secondAttribute="leading" type="default" id="TI6-aB-T6l"/>
|
132
147
|
<constraint firstItem="6Hu-uu-EUY" firstAttribute="trailing" secondItem="MgB-Y1-P3J" secondAttribute="trailing" type="default" id="Tkv-gE-Bb0"/>
|
@@ -136,11 +151,12 @@
|
|
136
151
|
<constraint firstItem="27" firstAttribute="centerY" secondItem="26" secondAttribute="centerY" type="default" id="fbb-bQ-YI1"/>
|
137
152
|
<constraint firstItem="MgB-Y1-P3J" firstAttribute="top" secondItem="26" secondAttribute="top" constant="120" id="fxO-Da-wfr"/>
|
138
153
|
<constraint firstItem="n4M-Kb-ePv" firstAttribute="leading" secondItem="6Hu-uu-EUY" secondAttribute="leading" type="default" id="gQf-GL-AtC"/>
|
154
|
+
<constraint firstItem="wB4-9F-vl7" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="206" id="iFj-Np-Sq6"/>
|
155
|
+
<constraint firstItem="yGC-o4-z18" firstAttribute="trailing" secondItem="n4M-Kb-ePv" secondAttribute="trailing" type="default" id="k2k-ql-gbD"/>
|
139
156
|
<constraint firstItem="mEd-bW-xG3" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="163" id="kHo-k9-xfB"/>
|
140
157
|
<constraint firstItem="n4M-Kb-ePv" firstAttribute="trailing" secondItem="6Hu-uu-EUY" secondAttribute="trailing" type="default" id="kXJ-R6-5W3"/>
|
141
158
|
<constraint firstItem="79f-eU-bDt" firstAttribute="baseline" secondItem="mEd-bW-xG3" secondAttribute="baseline" type="default" id="piK-8v-q9x"/>
|
142
159
|
<constraint firstItem="Nyi-ck-8hR" firstAttribute="top" secondItem="nbu-fr-Znd" secondAttribute="top" type="default" id="wtS-Ul-nbp"/>
|
143
|
-
<constraint firstItem="wB4-9F-vl7" firstAttribute="leading" secondItem="26" secondAttribute="leading" constant="206" id="zbX-ES-KTX"/>
|
144
160
|
</constraints>
|
145
161
|
<simulatedOrientationMetrics key="simulatedOrientationMetrics" orientation="landscapeRight"/>
|
146
162
|
</view>
|
@@ -153,6 +169,7 @@
|
|
153
169
|
<outlet property="labeledLabel" destination="27" id="GUQ-6K-Ygb"/>
|
154
170
|
<outlet property="placeholderTextField" destination="mEd-bW-xG3" id="WJN-WF-CeJ"/>
|
155
171
|
<outlet property="slider" destination="wB4-9F-vl7" id="tyV-Zf-nQd"/>
|
172
|
+
<outlet property="tablesButton" destination="yGC-o4-z18" id="4Ih-Gy-Efd"/>
|
156
173
|
<outlet property="textButton" destination="MgB-Y1-P3J" id="dgB-Uo-P2L"/>
|
157
174
|
</connections>
|
158
175
|
</viewController>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
//
|
2
|
+
// TablesViewController.h
|
3
|
+
// FurterApp
|
4
|
+
//
|
5
|
+
// Created by Jeremy Stewart on 5/5/13.
|
6
|
+
// Copyright (c) 2013 Levi Wilson. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import <UIKit/UIKit.h>
|
10
|
+
|
11
|
+
@interface TablesViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
|
12
|
+
{
|
13
|
+
NSArray *tableData;
|
14
|
+
NSArray *firstSectionData;
|
15
|
+
NSArray *secondSectionData;
|
16
|
+
}
|
17
|
+
@property (weak, nonatomic) IBOutlet UILabel *selectedLabel;
|
18
|
+
@property (weak, nonatomic) IBOutlet UITableView *testTableView;
|
19
|
+
|
20
|
+
@property (weak, nonatomic) IBOutlet UITableView *multipleSectionsTable;
|
21
|
+
|
22
|
+
@end
|
@@ -0,0 +1,133 @@
|
|
1
|
+
//
|
2
|
+
// TablesViewController.m
|
3
|
+
// FurterApp
|
4
|
+
//
|
5
|
+
// Created by Jeremy Stewart on 5/5/13.
|
6
|
+
// Copyright (c) 2013 Levi Wilson. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import "TablesViewController.h"
|
10
|
+
|
11
|
+
@interface TablesViewController ()
|
12
|
+
|
13
|
+
@end
|
14
|
+
|
15
|
+
@implementation TablesViewController
|
16
|
+
@synthesize testTableView, multipleSectionsTable, selectedLabel;
|
17
|
+
|
18
|
+
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
19
|
+
{
|
20
|
+
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
21
|
+
if (self) {
|
22
|
+
tableData = [[NSArray alloc] initWithObjects:@"First element", @"Second element", @"Third element", @"Fourth element", nil];
|
23
|
+
firstSectionData = [[NSArray alloc] initWithObjects:@"FirstSectionFirstElement", @"FirstSectionSecondElement", @"FirstSectionThirdElement", nil];
|
24
|
+
secondSectionData = [[NSArray alloc] initWithObjects:@"SecondSectionFirstElement", @"SecondSectionSecondElement", @"SecondSectionThirdElement", @"SecondSectionFourthElement", nil];
|
25
|
+
|
26
|
+
}
|
27
|
+
return self;
|
28
|
+
}
|
29
|
+
|
30
|
+
-(void)viewDidLoad
|
31
|
+
{
|
32
|
+
[super viewDidLoad];
|
33
|
+
[selectedLabel setAccessibilityLabel:@"selectedLabel"];
|
34
|
+
[testTableView setAccessibilityLabel:@"testTableView"];
|
35
|
+
[multipleSectionsTable setAccessibilityLabel:@"tableMultipleSections"];
|
36
|
+
}
|
37
|
+
|
38
|
+
|
39
|
+
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
|
40
|
+
{
|
41
|
+
if ([self isMultipleSectionTable:tableView]) {
|
42
|
+
return 2;
|
43
|
+
}
|
44
|
+
return 1;
|
45
|
+
}
|
46
|
+
|
47
|
+
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
|
48
|
+
{
|
49
|
+
if([self isMultipleSectionTable:tableView])
|
50
|
+
{
|
51
|
+
return [self multipeTableViewNumberOfRowsForSection:section];
|
52
|
+
}
|
53
|
+
return [tableData count];
|
54
|
+
}
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
|
59
|
+
{
|
60
|
+
if ([self isMultipleSectionTable:tableView]) {
|
61
|
+
|
62
|
+
return [self cellForTableView:tableView andIndexPath:indexPath];
|
63
|
+
|
64
|
+
} else{
|
65
|
+
|
66
|
+
UITableViewCell *cell = [testTableView dequeueReusableCellWithIdentifier:@"TableCell"];
|
67
|
+
if (!cell) {
|
68
|
+
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"TableCell"];
|
69
|
+
}
|
70
|
+
|
71
|
+
[cell setAccessibilityLabel:[tableData objectAtIndex:[indexPath row]]];
|
72
|
+
[[cell textLabel] setText:[tableData objectAtIndex:[indexPath row]]];
|
73
|
+
return cell;
|
74
|
+
}
|
75
|
+
|
76
|
+
}
|
77
|
+
|
78
|
+
-(UITableViewCell *) cellForTableView:(UITableView *)tableView andIndexPath:(NSIndexPath *)indexPath
|
79
|
+
{
|
80
|
+
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"TableCell"];
|
81
|
+
|
82
|
+
if ([indexPath section] == 0) {
|
83
|
+
|
84
|
+
if (!cell) {
|
85
|
+
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"TableCell"];
|
86
|
+
}
|
87
|
+
|
88
|
+
[cell setAccessibilityLabel:[firstSectionData objectAtIndex:[indexPath row]]];
|
89
|
+
[[cell textLabel] setText:[firstSectionData objectAtIndex:[indexPath row]]];
|
90
|
+
return cell;
|
91
|
+
|
92
|
+
|
93
|
+
} else {
|
94
|
+
|
95
|
+
if (!cell) {
|
96
|
+
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"TableCell"];
|
97
|
+
}
|
98
|
+
|
99
|
+
[cell setAccessibilityLabel:[secondSectionData objectAtIndex:[indexPath row]]];
|
100
|
+
[[cell textLabel] setText:[secondSectionData objectAtIndex:[indexPath row]]];
|
101
|
+
return cell;
|
102
|
+
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
|
107
|
+
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
|
108
|
+
{
|
109
|
+
[selectedLabel setText:[tableData objectAtIndex:[indexPath row]]];
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
-(NSInteger)multipeTableViewNumberOfRowsForSection:(NSInteger)section
|
114
|
+
{
|
115
|
+
switch (section) {
|
116
|
+
case 0:
|
117
|
+
return[firstSectionData count];
|
118
|
+
break;
|
119
|
+
case 1:
|
120
|
+
return [secondSectionData count];
|
121
|
+
break;
|
122
|
+
default:
|
123
|
+
return 0;
|
124
|
+
break;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
-(BOOL)isMultipleSectionTable:(UITableView *) tableView
|
129
|
+
{
|
130
|
+
return [[tableView accessibilityLabel] isEqualToString:@"tableMultipleSections"];
|
131
|
+
}
|
132
|
+
|
133
|
+
@end
|
@@ -0,0 +1,577 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="8.00">
|
3
|
+
<data>
|
4
|
+
<int key="IBDocument.SystemTarget">1552</int>
|
5
|
+
<string key="IBDocument.SystemVersion">12D78</string>
|
6
|
+
<string key="IBDocument.InterfaceBuilderVersion">3084</string>
|
7
|
+
<string key="IBDocument.AppKitVersion">1187.37</string>
|
8
|
+
<string key="IBDocument.HIToolboxVersion">626.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">2083</string>
|
12
|
+
</object>
|
13
|
+
<array key="IBDocument.IntegratedClassDependencies">
|
14
|
+
<string>IBNSLayoutConstraint</string>
|
15
|
+
<string>IBProxyObject</string>
|
16
|
+
<string>IBUILabel</string>
|
17
|
+
<string>IBUITableView</string>
|
18
|
+
<string>IBUIView</string>
|
19
|
+
</array>
|
20
|
+
<array key="IBDocument.PluginDependencies">
|
21
|
+
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
22
|
+
</array>
|
23
|
+
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
24
|
+
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
25
|
+
<integer value="1" key="NS.object.0"/>
|
26
|
+
</object>
|
27
|
+
<array class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
|
28
|
+
<object class="IBProxyObject" id="841351856">
|
29
|
+
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
30
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
31
|
+
</object>
|
32
|
+
<object class="IBProxyObject" id="606714003">
|
33
|
+
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
34
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
35
|
+
</object>
|
36
|
+
<object class="IBUIView" id="766721923">
|
37
|
+
<reference key="NSNextResponder"/>
|
38
|
+
<int key="NSvFlags">292</int>
|
39
|
+
<array class="NSMutableArray" key="NSSubviews">
|
40
|
+
<object class="IBUITableView" id="990931000">
|
41
|
+
<reference key="NSNextResponder" ref="766721923"/>
|
42
|
+
<int key="NSvFlags">274</int>
|
43
|
+
<string key="NSFrame">{{35, 72}, {317, 601}}</string>
|
44
|
+
<reference key="NSSuperview" ref="766721923"/>
|
45
|
+
<string key="NSReuseIdentifierKey">_NS:9</string>
|
46
|
+
<object class="NSColor" key="IBUIBackgroundColor" id="289291587">
|
47
|
+
<int key="NSColorSpace">3</int>
|
48
|
+
<bytes key="NSWhite">MQA</bytes>
|
49
|
+
</object>
|
50
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
51
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
52
|
+
<bool key="IBUIAlwaysBounceVertical">YES</bool>
|
53
|
+
<int key="IBUISeparatorStyle">1</int>
|
54
|
+
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
55
|
+
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
56
|
+
<float key="IBUIRowHeight">44</float>
|
57
|
+
<float key="IBUISectionHeaderHeight">22</float>
|
58
|
+
<float key="IBUISectionFooterHeight">22</float>
|
59
|
+
</object>
|
60
|
+
<object class="IBUITableView" id="342909506">
|
61
|
+
<reference key="NSNextResponder" ref="766721923"/>
|
62
|
+
<int key="NSvFlags">274</int>
|
63
|
+
<string key="NSFrame">{{377, 72}, {317, 601}}</string>
|
64
|
+
<reference key="NSSuperview" ref="766721923"/>
|
65
|
+
<string key="NSReuseIdentifierKey">_NS:9</string>
|
66
|
+
<reference key="IBUIBackgroundColor" ref="289291587"/>
|
67
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
68
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
69
|
+
<bool key="IBUIAlwaysBounceVertical">YES</bool>
|
70
|
+
<int key="IBUISeparatorStyle">1</int>
|
71
|
+
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
72
|
+
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
73
|
+
<float key="IBUIRowHeight">44</float>
|
74
|
+
<float key="IBUISectionHeaderHeight">22</float>
|
75
|
+
<float key="IBUISectionFooterHeight">22</float>
|
76
|
+
</object>
|
77
|
+
<object class="IBUILabel" id="170051138">
|
78
|
+
<reference key="NSNextResponder" ref="766721923"/>
|
79
|
+
<int key="NSvFlags">292</int>
|
80
|
+
<string key="NSFrame">{{43, 33}, {109, 21}}</string>
|
81
|
+
<reference key="NSSuperview" ref="766721923"/>
|
82
|
+
<string key="NSReuseIdentifierKey">_NS:9</string>
|
83
|
+
<bool key="IBUIOpaque">NO</bool>
|
84
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
85
|
+
<int key="IBUIContentMode">7</int>
|
86
|
+
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
87
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
88
|
+
<string key="IBUIText">Selected Item:</string>
|
89
|
+
<object class="NSColor" key="IBUITextColor" id="1048270383">
|
90
|
+
<int key="NSColorSpace">1</int>
|
91
|
+
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
92
|
+
<string key="IBUIColorCocoaTouchKeyPath">darkTextColor</string>
|
93
|
+
</object>
|
94
|
+
<nil key="IBUIHighlightedColor"/>
|
95
|
+
<int key="IBUIBaselineAdjustment">0</int>
|
96
|
+
<object class="IBUIFontDescription" key="IBUIFontDescription" id="303588821">
|
97
|
+
<int key="type">1</int>
|
98
|
+
<double key="pointSize">17</double>
|
99
|
+
</object>
|
100
|
+
<object class="NSFont" key="IBUIFont" id="640449887">
|
101
|
+
<string key="NSName">Helvetica</string>
|
102
|
+
<double key="NSSize">17</double>
|
103
|
+
<int key="NSfFlags">16</int>
|
104
|
+
</object>
|
105
|
+
<bool key="IBUIAdjustsFontSizeToFit">NO</bool>
|
106
|
+
</object>
|
107
|
+
<object class="IBUILabel" id="631497721">
|
108
|
+
<reference key="NSNextResponder" ref="766721923"/>
|
109
|
+
<int key="NSvFlags">292</int>
|
110
|
+
<string key="NSFrame">{{164, 33}, {124, 21}}</string>
|
111
|
+
<reference key="NSSuperview" ref="766721923"/>
|
112
|
+
<string key="NSReuseIdentifierKey">_NS:9</string>
|
113
|
+
<bool key="IBUIOpaque">NO</bool>
|
114
|
+
<bool key="IBUIClipsSubviews">YES</bool>
|
115
|
+
<int key="IBUIContentMode">7</int>
|
116
|
+
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
117
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
118
|
+
<string key="IBUIText">nothing selected</string>
|
119
|
+
<reference key="IBUITextColor" ref="1048270383"/>
|
120
|
+
<nil key="IBUIHighlightedColor"/>
|
121
|
+
<int key="IBUIBaselineAdjustment">0</int>
|
122
|
+
<reference key="IBUIFontDescription" ref="303588821"/>
|
123
|
+
<reference key="IBUIFont" ref="640449887"/>
|
124
|
+
<bool key="IBUIAdjustsFontSizeToFit">NO</bool>
|
125
|
+
</object>
|
126
|
+
</array>
|
127
|
+
<string key="NSFrame">{{0, 20}, {768, 1004}}</string>
|
128
|
+
<reference key="NSSuperview"/>
|
129
|
+
<object class="NSColor" key="IBUIBackgroundColor">
|
130
|
+
<int key="NSColorSpace">3</int>
|
131
|
+
<bytes key="NSWhite">MQA</bytes>
|
132
|
+
<object class="NSColorSpace" key="NSCustomColorSpace">
|
133
|
+
<int key="NSID">2</int>
|
134
|
+
</object>
|
135
|
+
</object>
|
136
|
+
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
137
|
+
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics">
|
138
|
+
<int key="IBUIStatusBarStyle">2</int>
|
139
|
+
</object>
|
140
|
+
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
141
|
+
</object>
|
142
|
+
</array>
|
143
|
+
<object class="IBObjectContainer" key="IBDocument.Objects">
|
144
|
+
<array class="NSMutableArray" key="connectionRecords">
|
145
|
+
<object class="IBConnectionRecord">
|
146
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
147
|
+
<string key="label">view</string>
|
148
|
+
<reference key="source" ref="841351856"/>
|
149
|
+
<reference key="destination" ref="766721923"/>
|
150
|
+
</object>
|
151
|
+
<int key="connectionID">3</int>
|
152
|
+
</object>
|
153
|
+
<object class="IBConnectionRecord">
|
154
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
155
|
+
<string key="label">selectedLabel</string>
|
156
|
+
<reference key="source" ref="841351856"/>
|
157
|
+
<reference key="destination" ref="631497721"/>
|
158
|
+
</object>
|
159
|
+
<int key="connectionID">37</int>
|
160
|
+
</object>
|
161
|
+
<object class="IBConnectionRecord">
|
162
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
163
|
+
<string key="label">testTableView</string>
|
164
|
+
<reference key="source" ref="841351856"/>
|
165
|
+
<reference key="destination" ref="990931000"/>
|
166
|
+
</object>
|
167
|
+
<int key="connectionID">41</int>
|
168
|
+
</object>
|
169
|
+
<object class="IBConnectionRecord">
|
170
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
171
|
+
<string key="label">multipleSectionsTable</string>
|
172
|
+
<reference key="source" ref="841351856"/>
|
173
|
+
<reference key="destination" ref="342909506"/>
|
174
|
+
</object>
|
175
|
+
<int key="connectionID">61</int>
|
176
|
+
</object>
|
177
|
+
<object class="IBConnectionRecord">
|
178
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
179
|
+
<string key="label">dataSource</string>
|
180
|
+
<reference key="source" ref="990931000"/>
|
181
|
+
<reference key="destination" ref="841351856"/>
|
182
|
+
</object>
|
183
|
+
<int key="connectionID">35</int>
|
184
|
+
</object>
|
185
|
+
<object class="IBConnectionRecord">
|
186
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
187
|
+
<string key="label">delegate</string>
|
188
|
+
<reference key="source" ref="990931000"/>
|
189
|
+
<reference key="destination" ref="841351856"/>
|
190
|
+
</object>
|
191
|
+
<int key="connectionID">36</int>
|
192
|
+
</object>
|
193
|
+
<object class="IBConnectionRecord">
|
194
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
195
|
+
<string key="label">dataSource</string>
|
196
|
+
<reference key="source" ref="342909506"/>
|
197
|
+
<reference key="destination" ref="841351856"/>
|
198
|
+
</object>
|
199
|
+
<int key="connectionID">54</int>
|
200
|
+
</object>
|
201
|
+
<object class="IBConnectionRecord">
|
202
|
+
<object class="IBCocoaTouchOutletConnection" key="connection">
|
203
|
+
<string key="label">delegate</string>
|
204
|
+
<reference key="source" ref="342909506"/>
|
205
|
+
<reference key="destination" ref="841351856"/>
|
206
|
+
</object>
|
207
|
+
<int key="connectionID">55</int>
|
208
|
+
</object>
|
209
|
+
</array>
|
210
|
+
<object class="IBMutableOrderedSet" key="objectRecords">
|
211
|
+
<array key="orderedObjects">
|
212
|
+
<object class="IBObjectRecord">
|
213
|
+
<int key="objectID">0</int>
|
214
|
+
<array key="object" id="0"/>
|
215
|
+
<reference key="children" ref="1000"/>
|
216
|
+
<nil key="parent"/>
|
217
|
+
</object>
|
218
|
+
<object class="IBObjectRecord">
|
219
|
+
<int key="objectID">-1</int>
|
220
|
+
<reference key="object" ref="841351856"/>
|
221
|
+
<reference key="parent" ref="0"/>
|
222
|
+
<string key="objectName">File's Owner</string>
|
223
|
+
</object>
|
224
|
+
<object class="IBObjectRecord">
|
225
|
+
<int key="objectID">-2</int>
|
226
|
+
<reference key="object" ref="606714003"/>
|
227
|
+
<reference key="parent" ref="0"/>
|
228
|
+
</object>
|
229
|
+
<object class="IBObjectRecord">
|
230
|
+
<int key="objectID">2</int>
|
231
|
+
<reference key="object" ref="766721923"/>
|
232
|
+
<array class="NSMutableArray" key="children">
|
233
|
+
<object class="IBNSLayoutConstraint" id="980668601">
|
234
|
+
<reference key="firstItem" ref="342909506"/>
|
235
|
+
<int key="firstAttribute">3</int>
|
236
|
+
<int key="relation">0</int>
|
237
|
+
<reference key="secondItem" ref="990931000"/>
|
238
|
+
<int key="secondAttribute">3</int>
|
239
|
+
<float key="multiplier">1</float>
|
240
|
+
<object class="IBLayoutConstant" key="constant">
|
241
|
+
<double key="value">0.0</double>
|
242
|
+
</object>
|
243
|
+
<float key="priority">1000</float>
|
244
|
+
<reference key="containingView" ref="766721923"/>
|
245
|
+
<int key="scoringType">6</int>
|
246
|
+
<float key="scoringTypeFloat">24</float>
|
247
|
+
<int key="contentType">2</int>
|
248
|
+
</object>
|
249
|
+
<object class="IBNSLayoutConstraint" id="179559377">
|
250
|
+
<reference key="firstItem" ref="342909506"/>
|
251
|
+
<int key="firstAttribute">5</int>
|
252
|
+
<int key="relation">0</int>
|
253
|
+
<reference key="secondItem" ref="766721923"/>
|
254
|
+
<int key="secondAttribute">5</int>
|
255
|
+
<float key="multiplier">1</float>
|
256
|
+
<object class="IBLayoutConstant" key="constant">
|
257
|
+
<double key="value">377</double>
|
258
|
+
</object>
|
259
|
+
<float key="priority">1000</float>
|
260
|
+
<reference key="containingView" ref="766721923"/>
|
261
|
+
<int key="scoringType">3</int>
|
262
|
+
<float key="scoringTypeFloat">9</float>
|
263
|
+
<int key="contentType">3</int>
|
264
|
+
</object>
|
265
|
+
<object class="IBNSLayoutConstraint" id="415386059">
|
266
|
+
<reference key="firstItem" ref="342909506"/>
|
267
|
+
<int key="firstAttribute">4</int>
|
268
|
+
<int key="relation">0</int>
|
269
|
+
<reference key="secondItem" ref="990931000"/>
|
270
|
+
<int key="secondAttribute">4</int>
|
271
|
+
<float key="multiplier">1</float>
|
272
|
+
<object class="IBLayoutConstant" key="constant">
|
273
|
+
<double key="value">0.0</double>
|
274
|
+
</object>
|
275
|
+
<float key="priority">1000</float>
|
276
|
+
<reference key="containingView" ref="766721923"/>
|
277
|
+
<int key="scoringType">6</int>
|
278
|
+
<float key="scoringTypeFloat">24</float>
|
279
|
+
<int key="contentType">2</int>
|
280
|
+
</object>
|
281
|
+
<object class="IBNSLayoutConstraint" id="636315810">
|
282
|
+
<reference key="firstItem" ref="631497721"/>
|
283
|
+
<int key="firstAttribute">5</int>
|
284
|
+
<int key="relation">0</int>
|
285
|
+
<reference key="secondItem" ref="766721923"/>
|
286
|
+
<int key="secondAttribute">5</int>
|
287
|
+
<float key="multiplier">1</float>
|
288
|
+
<object class="IBLayoutConstant" key="constant">
|
289
|
+
<double key="value">164</double>
|
290
|
+
</object>
|
291
|
+
<float key="priority">1000</float>
|
292
|
+
<reference key="containingView" ref="766721923"/>
|
293
|
+
<int key="scoringType">3</int>
|
294
|
+
<float key="scoringTypeFloat">9</float>
|
295
|
+
<int key="contentType">3</int>
|
296
|
+
</object>
|
297
|
+
<object class="IBNSLayoutConstraint" id="6811628">
|
298
|
+
<reference key="firstItem" ref="631497721"/>
|
299
|
+
<int key="firstAttribute">11</int>
|
300
|
+
<int key="relation">0</int>
|
301
|
+
<reference key="secondItem" ref="170051138"/>
|
302
|
+
<int key="secondAttribute">11</int>
|
303
|
+
<float key="multiplier">1</float>
|
304
|
+
<object class="IBLayoutConstant" key="constant">
|
305
|
+
<double key="value">0.0</double>
|
306
|
+
</object>
|
307
|
+
<float key="priority">1000</float>
|
308
|
+
<reference key="containingView" ref="766721923"/>
|
309
|
+
<int key="scoringType">6</int>
|
310
|
+
<float key="scoringTypeFloat">24</float>
|
311
|
+
<int key="contentType">2</int>
|
312
|
+
</object>
|
313
|
+
<object class="IBNSLayoutConstraint" id="907290758">
|
314
|
+
<reference key="firstItem" ref="990931000"/>
|
315
|
+
<int key="firstAttribute">5</int>
|
316
|
+
<int key="relation">0</int>
|
317
|
+
<reference key="secondItem" ref="766721923"/>
|
318
|
+
<int key="secondAttribute">5</int>
|
319
|
+
<float key="multiplier">1</float>
|
320
|
+
<object class="IBLayoutConstant" key="constant">
|
321
|
+
<double key="value">35</double>
|
322
|
+
</object>
|
323
|
+
<float key="priority">1000</float>
|
324
|
+
<reference key="containingView" ref="766721923"/>
|
325
|
+
<int key="scoringType">3</int>
|
326
|
+
<float key="scoringTypeFloat">9</float>
|
327
|
+
<int key="contentType">3</int>
|
328
|
+
</object>
|
329
|
+
<object class="IBNSLayoutConstraint" id="630821033">
|
330
|
+
<reference key="firstItem" ref="990931000"/>
|
331
|
+
<int key="firstAttribute">3</int>
|
332
|
+
<int key="relation">0</int>
|
333
|
+
<reference key="secondItem" ref="766721923"/>
|
334
|
+
<int key="secondAttribute">3</int>
|
335
|
+
<float key="multiplier">1</float>
|
336
|
+
<object class="IBLayoutConstant" key="constant">
|
337
|
+
<double key="value">72</double>
|
338
|
+
</object>
|
339
|
+
<float key="priority">1000</float>
|
340
|
+
<reference key="containingView" ref="766721923"/>
|
341
|
+
<int key="scoringType">3</int>
|
342
|
+
<float key="scoringTypeFloat">9</float>
|
343
|
+
<int key="contentType">3</int>
|
344
|
+
</object>
|
345
|
+
<object class="IBNSLayoutConstraint" id="1009770469">
|
346
|
+
<reference key="firstItem" ref="170051138"/>
|
347
|
+
<int key="firstAttribute">5</int>
|
348
|
+
<int key="relation">0</int>
|
349
|
+
<reference key="secondItem" ref="766721923"/>
|
350
|
+
<int key="secondAttribute">5</int>
|
351
|
+
<float key="multiplier">1</float>
|
352
|
+
<object class="IBLayoutConstant" key="constant">
|
353
|
+
<double key="value">43</double>
|
354
|
+
</object>
|
355
|
+
<float key="priority">1000</float>
|
356
|
+
<reference key="containingView" ref="766721923"/>
|
357
|
+
<int key="scoringType">3</int>
|
358
|
+
<float key="scoringTypeFloat">9</float>
|
359
|
+
<int key="contentType">3</int>
|
360
|
+
</object>
|
361
|
+
<object class="IBNSLayoutConstraint" id="386903591">
|
362
|
+
<reference key="firstItem" ref="170051138"/>
|
363
|
+
<int key="firstAttribute">3</int>
|
364
|
+
<int key="relation">0</int>
|
365
|
+
<reference key="secondItem" ref="766721923"/>
|
366
|
+
<int key="secondAttribute">3</int>
|
367
|
+
<float key="multiplier">1</float>
|
368
|
+
<object class="IBLayoutConstant" key="constant">
|
369
|
+
<double key="value">33</double>
|
370
|
+
</object>
|
371
|
+
<float key="priority">1000</float>
|
372
|
+
<reference key="containingView" ref="766721923"/>
|
373
|
+
<int key="scoringType">3</int>
|
374
|
+
<float key="scoringTypeFloat">9</float>
|
375
|
+
<int key="contentType">3</int>
|
376
|
+
</object>
|
377
|
+
<reference ref="990931000"/>
|
378
|
+
<reference ref="631497721"/>
|
379
|
+
<reference ref="170051138"/>
|
380
|
+
<reference ref="342909506"/>
|
381
|
+
</array>
|
382
|
+
<reference key="parent" ref="0"/>
|
383
|
+
</object>
|
384
|
+
<object class="IBObjectRecord">
|
385
|
+
<int key="objectID">4</int>
|
386
|
+
<reference key="object" ref="990931000"/>
|
387
|
+
<array class="NSMutableArray" key="children">
|
388
|
+
<object class="IBNSLayoutConstraint" id="547921655">
|
389
|
+
<reference key="firstItem" ref="990931000"/>
|
390
|
+
<int key="firstAttribute">7</int>
|
391
|
+
<int key="relation">0</int>
|
392
|
+
<nil key="secondItem"/>
|
393
|
+
<int key="secondAttribute">0</int>
|
394
|
+
<float key="multiplier">1</float>
|
395
|
+
<object class="IBLayoutConstant" key="constant">
|
396
|
+
<double key="value">317</double>
|
397
|
+
</object>
|
398
|
+
<float key="priority">1000</float>
|
399
|
+
<reference key="containingView" ref="990931000"/>
|
400
|
+
<int key="scoringType">3</int>
|
401
|
+
<float key="scoringTypeFloat">9</float>
|
402
|
+
<int key="contentType">1</int>
|
403
|
+
</object>
|
404
|
+
<object class="IBNSLayoutConstraint" id="246458826">
|
405
|
+
<reference key="firstItem" ref="990931000"/>
|
406
|
+
<int key="firstAttribute">8</int>
|
407
|
+
<int key="relation">0</int>
|
408
|
+
<nil key="secondItem"/>
|
409
|
+
<int key="secondAttribute">0</int>
|
410
|
+
<float key="multiplier">1</float>
|
411
|
+
<object class="IBLayoutConstant" key="constant">
|
412
|
+
<double key="value">601</double>
|
413
|
+
</object>
|
414
|
+
<float key="priority">1000</float>
|
415
|
+
<reference key="containingView" ref="990931000"/>
|
416
|
+
<int key="scoringType">3</int>
|
417
|
+
<float key="scoringTypeFloat">9</float>
|
418
|
+
<int key="contentType">1</int>
|
419
|
+
</object>
|
420
|
+
</array>
|
421
|
+
<reference key="parent" ref="766721923"/>
|
422
|
+
</object>
|
423
|
+
<object class="IBObjectRecord">
|
424
|
+
<int key="objectID">20</int>
|
425
|
+
<reference key="object" ref="170051138"/>
|
426
|
+
<reference key="parent" ref="766721923"/>
|
427
|
+
</object>
|
428
|
+
<object class="IBObjectRecord">
|
429
|
+
<int key="objectID">23</int>
|
430
|
+
<reference key="object" ref="386903591"/>
|
431
|
+
<reference key="parent" ref="766721923"/>
|
432
|
+
</object>
|
433
|
+
<object class="IBObjectRecord">
|
434
|
+
<int key="objectID">24</int>
|
435
|
+
<reference key="object" ref="631497721"/>
|
436
|
+
<reference key="parent" ref="766721923"/>
|
437
|
+
</object>
|
438
|
+
<object class="IBObjectRecord">
|
439
|
+
<int key="objectID">25</int>
|
440
|
+
<reference key="object" ref="6811628"/>
|
441
|
+
<reference key="parent" ref="766721923"/>
|
442
|
+
</object>
|
443
|
+
<object class="IBObjectRecord">
|
444
|
+
<int key="objectID">18</int>
|
445
|
+
<reference key="object" ref="630821033"/>
|
446
|
+
<reference key="parent" ref="766721923"/>
|
447
|
+
</object>
|
448
|
+
<object class="IBObjectRecord">
|
449
|
+
<int key="objectID">43</int>
|
450
|
+
<reference key="object" ref="246458826"/>
|
451
|
+
<reference key="parent" ref="990931000"/>
|
452
|
+
</object>
|
453
|
+
<object class="IBObjectRecord">
|
454
|
+
<int key="objectID">44</int>
|
455
|
+
<reference key="object" ref="547921655"/>
|
456
|
+
<reference key="parent" ref="990931000"/>
|
457
|
+
</object>
|
458
|
+
<object class="IBObjectRecord">
|
459
|
+
<int key="objectID">45</int>
|
460
|
+
<reference key="object" ref="907290758"/>
|
461
|
+
<reference key="parent" ref="766721923"/>
|
462
|
+
</object>
|
463
|
+
<object class="IBObjectRecord">
|
464
|
+
<int key="objectID">47</int>
|
465
|
+
<reference key="object" ref="1009770469"/>
|
466
|
+
<reference key="parent" ref="766721923"/>
|
467
|
+
</object>
|
468
|
+
<object class="IBObjectRecord">
|
469
|
+
<int key="objectID">50</int>
|
470
|
+
<reference key="object" ref="636315810"/>
|
471
|
+
<reference key="parent" ref="766721923"/>
|
472
|
+
</object>
|
473
|
+
<object class="IBObjectRecord">
|
474
|
+
<int key="objectID">51</int>
|
475
|
+
<reference key="object" ref="342909506"/>
|
476
|
+
<array class="NSMutableArray" key="children">
|
477
|
+
<object class="IBNSLayoutConstraint" id="509173742">
|
478
|
+
<reference key="firstItem" ref="342909506"/>
|
479
|
+
<int key="firstAttribute">7</int>
|
480
|
+
<int key="relation">0</int>
|
481
|
+
<nil key="secondItem"/>
|
482
|
+
<int key="secondAttribute">0</int>
|
483
|
+
<float key="multiplier">1</float>
|
484
|
+
<object class="IBLayoutConstant" key="constant">
|
485
|
+
<double key="value">317</double>
|
486
|
+
</object>
|
487
|
+
<float key="priority">1000</float>
|
488
|
+
<reference key="containingView" ref="342909506"/>
|
489
|
+
<int key="scoringType">3</int>
|
490
|
+
<float key="scoringTypeFloat">9</float>
|
491
|
+
<int key="contentType">1</int>
|
492
|
+
</object>
|
493
|
+
</array>
|
494
|
+
<reference key="parent" ref="766721923"/>
|
495
|
+
</object>
|
496
|
+
<object class="IBObjectRecord">
|
497
|
+
<int key="objectID">53</int>
|
498
|
+
<reference key="object" ref="509173742"/>
|
499
|
+
<reference key="parent" ref="342909506"/>
|
500
|
+
</object>
|
501
|
+
<object class="IBObjectRecord">
|
502
|
+
<int key="objectID">58</int>
|
503
|
+
<reference key="object" ref="415386059"/>
|
504
|
+
<reference key="parent" ref="766721923"/>
|
505
|
+
</object>
|
506
|
+
<object class="IBObjectRecord">
|
507
|
+
<int key="objectID">59</int>
|
508
|
+
<reference key="object" ref="179559377"/>
|
509
|
+
<reference key="parent" ref="766721923"/>
|
510
|
+
</object>
|
511
|
+
<object class="IBObjectRecord">
|
512
|
+
<int key="objectID">60</int>
|
513
|
+
<reference key="object" ref="980668601"/>
|
514
|
+
<reference key="parent" ref="766721923"/>
|
515
|
+
</object>
|
516
|
+
</array>
|
517
|
+
</object>
|
518
|
+
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
519
|
+
<string key="-1.CustomClassName">TablesViewController</string>
|
520
|
+
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
521
|
+
<string key="-2.CustomClassName">UIResponder</string>
|
522
|
+
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
523
|
+
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
524
|
+
<string key="2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
525
|
+
<array class="NSMutableArray" key="2.IBViewMetadataConstraints">
|
526
|
+
<reference ref="386903591"/>
|
527
|
+
<reference ref="1009770469"/>
|
528
|
+
<reference ref="630821033"/>
|
529
|
+
<reference ref="907290758"/>
|
530
|
+
<reference ref="6811628"/>
|
531
|
+
<reference ref="636315810"/>
|
532
|
+
<reference ref="415386059"/>
|
533
|
+
<reference ref="179559377"/>
|
534
|
+
<reference ref="980668601"/>
|
535
|
+
</array>
|
536
|
+
<string key="20.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
537
|
+
<boolean value="NO" key="20.IBViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
538
|
+
<string key="23.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
539
|
+
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
540
|
+
<boolean value="NO" key="24.IBViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
541
|
+
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
542
|
+
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
543
|
+
<array class="NSMutableArray" key="4.IBViewMetadataConstraints">
|
544
|
+
<reference ref="246458826"/>
|
545
|
+
<reference ref="547921655"/>
|
546
|
+
</array>
|
547
|
+
<boolean value="NO" key="4.IBViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
548
|
+
<string key="43.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
549
|
+
<string key="44.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
550
|
+
<string key="45.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
551
|
+
<string key="47.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
552
|
+
<string key="50.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
553
|
+
<string key="51.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
554
|
+
<array class="NSMutableArray" key="51.IBViewMetadataConstraints">
|
555
|
+
<reference ref="509173742"/>
|
556
|
+
</array>
|
557
|
+
<boolean value="NO" key="51.IBViewMetadataTranslatesAutoresizingMaskIntoConstraints"/>
|
558
|
+
<string key="53.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
559
|
+
<string key="58.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
560
|
+
<string key="59.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
561
|
+
<string key="60.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
562
|
+
</dictionary>
|
563
|
+
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
564
|
+
<nil key="activeLocalization"/>
|
565
|
+
<dictionary class="NSMutableDictionary" key="localizations"/>
|
566
|
+
<nil key="sourceID"/>
|
567
|
+
<int key="maxID">61</int>
|
568
|
+
</object>
|
569
|
+
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
570
|
+
<int key="IBDocument.localizationMode">0</int>
|
571
|
+
<string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
|
572
|
+
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
573
|
+
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
574
|
+
<bool key="IBDocument.UseAutolayout">YES</bool>
|
575
|
+
<string key="IBCocoaTouchPluginVersion">2083</string>
|
576
|
+
</data>
|
577
|
+
</archive>
|