Xcode“无法识别的选择器发送到实例”

时间:2014-02-22 16:32:38

标签: ios iphone cocoa-touch ios7 xml-parsing

阻止错误消息,但无法找到错误。任何人都可以帮助我吗?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ErgebnisseCell";
    ErgebnisseCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];


    if (indexPath.section == 0) {

    NSDictionary *aktion = self.wmXMLParser.alleAktionen [indexPath.row];
    __block NSString *VP= @"";

    [aktion enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
        if (VP.length) {
            VP = [VP stringByAppendingString:@","];
        }
        VP = [NSString stringWithFormat:@"%@%@ = %@", VP, key, obj];
    }];

    cell.spielpaarungLabel.text =  VP;

2 个答案:

答案 0 :(得分:0)

在我看来,您需要在故事板中设置单元格类型。它目前设置为UITableViewCell而不是Ergebnisse Cell,因此没有spielsparungLabel属性。

答案 1 :(得分:0)

从方法返回的单元格

[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

不属于ErgebnisseCell类型,因此不会回应

spielpaarungLabel

方法

确保您已在故事板或Nib文件中将单元格的标识符设置为“ErgebnisseCell”