0

我有两个从某个基类继承的类。在这些类中,我有相同的 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;
    }
}
4

1 回答 1

0

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

于 2012-06-11T06:58:44.933 回答