Skip to content

Commit f201c88

Browse files
committed
CustomCellSample: added Indentifier
1 parent 96e4551 commit f201c88

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CustomCellSample/CustomCellSample/CustomCell.xib

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<data>
44
<int key="IBDocument.SystemTarget">1056</int>
55
<string key="IBDocument.SystemVersion">10J869</string>
6-
<string key="IBDocument.InterfaceBuilderVersion">1305</string>
6+
<string key="IBDocument.InterfaceBuilderVersion">1306</string>
77
<string key="IBDocument.AppKitVersion">1038.35</string>
88
<string key="IBDocument.HIToolboxVersion">461.00</string>
99
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
1010
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11-
<string key="NS.object.0">300</string>
11+
<string key="NS.object.0">301</string>
1212
</object>
1313
<object class="NSArray" key="IBDocument.IntegratedClassDependencies">
1414
<bool key="EncodedWithXMLCoder">YES</bool>
@@ -123,7 +123,6 @@
123123
<string key="NSFrame">{{225, 9}, {79, 79}}</string>
124124
<reference key="NSSuperview" ref="564671446"/>
125125
<reference key="NSWindow"/>
126-
<reference key="NSNextKeyView"/>
127126
<bool key="IBUIUserInteractionEnabled">NO</bool>
128127
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
129128
</object>
@@ -154,6 +153,7 @@
154153
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
155154
<int key="IBUISeparatorStyle">1</int>
156155
<reference key="IBUIContentView" ref="564671446"/>
156+
<string key="IBUIReuseIdentifier">CustomCell</string>
157157
</object>
158158
</object>
159159
<object class="IBObjectContainer" key="IBDocument.Objects">
@@ -350,6 +350,6 @@
350350
</object>
351351
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
352352
<int key="IBDocument.defaultPropertyAccessControl">3</int>
353-
<string key="IBCocoaTouchPluginVersion">300</string>
353+
<string key="IBCocoaTouchPluginVersion">301</string>
354354
</data>
355355
</archive>

CustomCellSample/CustomCellSample/RootViewController.m

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
6969
{
7070
CustomCell* cell = (CustomCell*)[tableView dequeueReusableCellWithIdentifier:CUSTOM_CELL_NIB];
7171
if (cell == nil) {
72+
NSLog(@"x");
7273
UINib* nib = [UINib nibWithNibName:CUSTOM_CELL_NIB bundle:nil];
7374
NSArray* array = [nib instantiateWithOwner:nil options:nil];
7475
cell = [array objectAtIndex:0];

0 commit comments

Comments
 (0)