Почему я не могу импортировать подкласс UITableViewCell? Это странно - PullRequest
0 голосов
/ 19 апреля 2010

Это так, я создал подкласс UITableViewCell с именем NewsItemCell, затем я хочу использовать его в своем FirstViewController.m, затем я попытался импортировать его, но компилятор продолжает сообщать мне это

Ниже мой код, он сводит меня с ума, спасибо, если вы можете помочь.

#import "NewsItemCell.h"

#import "FirstViewController.h"



@implementation FirstViewController
@synthesize computers;


- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *CellIdentifier = @"NewsItemCellIdentifier";

    NewsItemcell *cell = (NewsItemcell *)[tableView 
                                      dequeueReusableCellWithIdentifier: CellIdentifier];
    if (cell == nil)  
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"NewsItemCell" 
                                                     owner:self options:nil];
        for (id oneObject in nib)
            if ([oneObject isKindOfClass:[NewsItemcell class]])
                cell = (NewsItemcell *)oneObject;
    }
    NSUInteger row = [indexPath row];
    NSDictionary *rowData = [self.computers objectAtIndex:row];
    cell.newsTitle.text = [rowData objectForKey:@"Color"];
    cell.newsDate.text = [rowData objectForKey:@"Name"];
    return cell;
}

Jason

1 Ответ

0 голосов
/ 19 апреля 2010

Если этот код

if (cell == nil)  
{
    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"NewsItemCell" 
                                                 owner:self options:nil];
    for (id oneObject in nib)
        if ([oneObject isKindOfClass:[NewsItemcell class]])
            cell = (NewsItemcell *)oneObject;
}

не будет

if (cell == nil)  
{
    [[NSBundle mainBundle] loadNibNamed:@"NewsItemCell" 
                                                 owner:self options:nil];
    cell = newsItemCellView
}

и NewsItemcell *cell be NewsItemcell *newsItemCellView, так как ячейка может запутать компилятор.

...