カスタムセルでリサイクルさせるとき

// セル生成
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
   
    [[NSBundle mainBundle] loadNibNamed:@"StoreListAllCell" owner:self options:nil];    // self.bookCell が メモリ空間のセルを参照する(セル作成)
    
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];  // リサイクル
    
    if(cell == nil){
        cell = self.bookCell;   // セル作成
        cell.textLabel.textColor = [UIColor blueColor];
        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
        cell.selectionStyle = UITableViewCellSelectionStyleGray;
        self.bookCell = nil;
    }
    
    /* リサイクルで前のが残るため */
    /* ラベル上書き処理をここに書く */
   
    
    return cell;
}