如果添加约束,UITableView上的Xcode 7 UILable将消失在CoreData项目上

时间:2015-10-29 10:33:49

标签: ios objective-c xcode uitableview

1。我创建了一个Maste-Detail Application项目,如下所示:

enter image description here

2.将UILabel拖到牢房上,如下所示: enter image description here

3.更改代码:

- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
    NSManagedObject *object = [self.fetchedResultsController objectAtIndexPath:indexPath];
//    cell.textLabel.text = [[object valueForKey:@"timeStamp"] description];
    UILabel *label = (UILabel*)[cell.contentView viewWithTag:11];
    label.text = [[object valueForKey:@"timeStamp"] description];
}

问题:结果是这样的,实际上是创建了单元格,但不确定标签在哪里? enter image description here

但是,如果我删除所有约束,它运作良好,不知道为什么。 enter image description here

0 个答案:

没有答案