我在故事板上添加了uiviewcontroller上的uitable视图,但是在添加的图像中有一个白色空间在tableview上。在自动布局中调整后,白色空间变为但是最后两行tableview在模拟器iphone 4.0和iphone模拟器上变得无法响应4.0 64位,我很快就被这一部分所震撼。事先谢谢。
请让我知道故事板中应设置的单元格,
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return [codesArray count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
UILabel *codeNameLabel = (UILabel *)[cell viewWithTag:101];
NSString *codeNameText=[codeNameArray objectAtIndex:indexPath.section];
codeNameLabel.text = codeNameText;
return cell;
}