无法从XIB iPhone加载Cell

时间:2013-03-20 06:30:30

标签: iphone ios uitableview

当我尝试通过XIB加载单元格时,应用程序崩溃并给我以下异常。

* 由于未捕获的异常NSUnknownKeyException而终止应用,原因:[<MyAdsViewController 0x7a38e30> setValue:forUndefinedKey:]:此类与密钥轮播不符合密钥值编码。

任何人都可以帮助解决这个问题。

3 个答案:

答案 0 :(得分:2)

试试这个::

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Configure the cell.
    static NSString *CustomCellIdentifier = @"customCell";
    customCell *cell = (customCell *)[tableView dequeueReusableCellWithIdentifier: CustomCellIdentifier];

    if (cell == nil)
    {
        NSArray *nib;
        nib = [[NSBundle mainBundle] loadNibNamed:@"customCell" owner:self options:nil];

        for (id oneObject in nib)
            if ([oneObject isKindOfClass:[customCellr class]])
               cell = (customCell *)oneObject;

        cell.title.text = @"Hello";
    }
    return cell;
}

希望,它会帮助你。

感谢。

答案 1 :(得分:0)

您需要转到此课程的XIB,并检查是否有任何带链接警告的内容,例如此enter image description here

删除这些类型的链接,然后运行您的应用程序。

答案 2 :(得分:0)

尝试为单元格创建对象,并按照以下代码执行此操作

(UITableViewCell *)tableView:(UITableView *)tableview_ cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString
*simpleTableIdentifier = @"SimpleTableCell";

ISOPriceCell *cell = (ISOPriceCell *)[tableview_ dequeueReusableCellWithIdentifier:simpleTableIdentifier]; if (cell
== nil) {
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ISOPriceCell" owner:self options:nil];
    cell = [nib objectAtIndex:0];
    cell.priceTextFiled.keyboardType = UIKeyboardTypeNumberPad;
    cell.priceTextFiled.delegate = self;
    cell.selectionStyle = UITableViewCellSelectionStyleNone;}}