从实现tableview委托和数据源方法的基类继承

时间:2012-06-11 06:55:37

标签: iphone objective-c ios xcode cocoa

我有两个继承自某个基类的类。在这些类中,我有相同的tableview方法,所以我决定将所有逻辑移动到基类。所有代码都没有nibs文件。但由于某种原因,基类不响应tableview事件。将逻辑移到基类是否正确,或者是否存在已知问题,或者我在实现中遗漏了什么?

我只是分配:

self.tableView.delegate = self;
self.tableView.dataSource = self;

然后实施:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    if ([indexPath section] == 0) {
        return 320;
    }
    else {
        return 0;
    }
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (section == 0) {
        return [self.imagesArray count];
    }
    else {
        return 0;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString *cellIdentifier = @"mediaCell";
    UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (cell == nil) {
        if ([indexPath section] == 0) {
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0f, 320.0f)] autorelease];

            UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0f, 320.0f)];
            imageView.tag = 1;
            [cell addSubview:imageView];
            [imageView release];
        }
    }

    NSURL *url = [NSURL URLWithString:[self.imagesArray objectAtIndex:[indexPath row]]];
    UIImageView *imageView = (UIImageView *)[cell viewWithTag:1];

    [imageView setImageWithURL:url];

    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
    if (section == 0) {
        return self.filterBar.bounds.size.height;
    }
    else {
        return 0;
    }
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    if (section == 0) {
        return self.filterBar;
    }
    else {
        return 0;
    }
}

1 个答案:

答案 0 :(得分:0)

如果你的意思是tableview委托方法,我认为你缺少在基类的定义中添加类别,你能澄清这些方法是否是UITableview使用的委托?