diff --git a/CustomCellSample/CustomCellSample/CustomCell.xib b/CustomCellSample/CustomCellSample/CustomCell.xib index 497dd53..1d0bde7 100644 --- a/CustomCellSample/CustomCellSample/CustomCell.xib +++ b/CustomCellSample/CustomCellSample/CustomCell.xib @@ -3,12 +3,12 @@ 1056 10J869 - 1305 + 1306 1038.35 461.00 com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 300 + 301 YES @@ -123,7 +123,6 @@ {{225, 9}, {79, 79}} - NO IBCocoaTouchFramework @@ -154,6 +153,7 @@ IBCocoaTouchFramework 1 + CustomCell @@ -350,6 +350,6 @@ YES 3 - 300 + 301 diff --git a/CustomCellSample/CustomCellSample/RootViewController.m b/CustomCellSample/CustomCellSample/RootViewController.m index 20049fd..3790972 100644 --- a/CustomCellSample/CustomCellSample/RootViewController.m +++ b/CustomCellSample/CustomCellSample/RootViewController.m @@ -69,6 +69,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N { CustomCell* cell = (CustomCell*)[tableView dequeueReusableCellWithIdentifier:CUSTOM_CELL_NIB]; if (cell == nil) { + NSLog(@"x"); UINib* nib = [UINib nibWithNibName:CUSTOM_CELL_NIB bundle:nil]; NSArray* array = [nib instantiateWithOwner:nil options:nil]; cell = [array objectAtIndex:0];