所以我有一个带有动态原型的 UITableview。这些单元格是具有 4 个属性的自定义单元格:
- imageVBkg(背景图像)
- 主文本(标签)
- 副标题(标签)
- personImageView(带有此人照片的 uiimageview)。
我在原来的故事板中工作得很好,但最近搬到了一个新的故事板上。(仅供参考,我无法用旧的故事板重新测试,因为代码发生了一些更改,排除了这种情况)。
** 这似乎是一个自动布局问题。禁用自动布局可以解决问题(但自动布局是有原因的)。**
基本上,问题是这样的:
- 标签内容显示正常(数据取自 fetchedresultscontroller/coredata)
- imageVBkg 工作正常
- 记录报告图像确实存在
- 项目清单
- 最初显示时,personImageView 内容不可见
- 一旦我滚动并“重用”单元格,personImageView 内容就会正确显示。
** 编辑 **
- 如果我选择一个单元格并转到下一个屏幕,然后点击保存按钮,应用程序将返回到原始的 tableview 屏幕,并出现图像。不过,更新 coredata 信息会使图像出现并没有真正的意义。
下面的一些示例代码...
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
PersonCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"personCell" forIndexPath:indexPath];
if (cell == nil) {
cell = [[PersonCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"personCell"];
}
cell.delegate = self;
cell.dataSource = self;
cell.backgroundColor = _blueColor;
[self configureCell:cell atIndexPath:indexPath];
return cell;
}
-(void)configureCell:(PersonCell *)cell atIndexPath:(NSIndexPath *)indexPath
{
Person *person = [_fetchedResultsController objectAtIndexPath:indexPath];
cell.imageVBkg.image = [[UIImage imageNamed:@"list-item-background"] resizableImageWithCapInsets:UIEdgeInsetsMake(50, 50, 30, 30)];
cell.mainText.text = [NSString stringWithFormat:@"%@ %@", person.firstname, person.lastname];
Company *company = (Company *)person.worksFor;
NSString *fullString = person.position;
if ([company.name length] > 0 && [person.position length] > 0) {
fullString = [fullString stringByAppendingString:@" at "];
}
if (company.name != nil) {
fullString = [fullString stringByAppendingString:company.name];
}
cell.subtitle.text = fullString;
if ([person hasPhoto]) {
_image = [person photoImage];
if (_image != nil) {
cell.personImageView.clipsToBounds = YES;
cell.personImageView.image = _image;
cell.personImageView.layer.cornerRadius = cell.personImageView.bounds.size.width / 2.0f;
}
}
}
PersonCell.h 具有以下属性:
@property (nonatomic, weak) IBOutlet UILabel *mainText;
@property (nonatomic, weak) IBOutlet UILabel *subtitle;
@property (nonatomic, weak) IBOutlet UIImageView *personImageView;
@property (strong, nonatomic) IBOutlet UIImageView *imageVBkg;
还值得一提...如果我不使用“cell.personImageView.clipsToBounds = YES;” 然后 personImageView 图像确实出现了,但是作为一个正方形,而不是一个圆形,这就是我需要的。
希望这是一个简单的修复...
在此先感谢您的任何建议。