陈斌彬的技术博客

Stay foolish,stay hungry

用xib文件自定义tableviewCell

创建xib文件

img

用NSBundle加载BBSearchCell.m文件

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    
    BBSearchCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

        if  (cell == nil) {
              //通过xib的名称加载自定义的cell
               cell = [[[NSBundle mainBundle] loadNibNamed:@"BBSearchCell" owner:self options:nil] lastObject];
           }
}

Resource Reference