3

我有一个带有自定义 TableViewCell 的 tableView。我没有使用 .xib 文件来进行布局。问题是当表应该加载时,我收到以下错误:Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIImage nsli_superitem]: unrecognized selector sent to instance 0x91899b0'我不确定我在这里做错了什么。这是单元格的 .m 文件。

#import "TCMExhibitListCell.h"

@implementation TCMExhibitListCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    [self setListImage:[[UIImage alloc] init]];
    [self setTitleLabel:[[UILabel alloc] init]];


    NSDictionary *names = @{@"listImage" : [self listImage]};

    NSString *fmt = @"H:|-0-[listImage]";

    NSArray *imgH = [NSLayoutConstraint constraintsWithVisualFormat:fmt
                                                            options:0
                                                            metrics:nil
                                                              views:names];
    [[self contentView] addConstraints:imgH];
}
return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];

// Configure the view for the selected state
}

@end

这是单元格在 tableview 控制器中加载的位置

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TCMExhibitListCell *c = [tableView dequeueReusableCellWithIdentifier:@"TCMExhibitListCell"];

if (!c) {
    c = [[TCMExhibitListCell alloc] initWithStyle:UITableViewCellStyleDefault
                               reuseIdentifier:@"TCMExhibitListCell"];
}

TCMExhibitRemote *e = [[self exhibits] objectAtIndex:[indexPath row]];

NSString *imageFile = [NSString stringWithFormat:@"%@/%@.jpg",[[TCMExhibitFeedStore sharedStore] imagePathByType:@"listImage"],[e image]];

[c setListImage:[UIImage imageNamed:imageFile]];

return c;
}
4

3 回答 3

20

如果你做一点谷歌搜索,你会看到它nsli_superitem与自动布局相关联。哪个指向你[[self contentView] addConstraints:imgH];,哪个指向你NSString *fmt = @"H:|-0-[listImage]";,然后指向[self setListImage:[[UIImage alloc] init]];

即,您不能基于图像设置布局,因为它不是 UI 项。

您可能应该在某处基于图像视图视图进行布局......

于 2013-07-10T13:51:11.600 回答
1

我的问题是我试图UIViewController在使用 Visual Format Language 的约束中使用 a 。更改约束以使用 UIViewControllerview修复了崩溃:

containerView.addConstraints(NSLayoutConstraint.constraintsWithVisualFormat("H:|-0-[playerVC]-0-|", options: .DirectionLeadingToTrailing, metrics: nil, views: ["playerVC" : playerVC.view])) // note playerVC.view here, not playerVC
于 2016-06-21T18:01:18.950 回答
0

我确实认为您忘记设置它。

self.listImage.translatesAutoresizingMaskIntoConstraints = NO;
于 2015-01-09T10:26:53.273 回答