Дайте уникальный идентификатор имени, например:
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = NSLocalizedString(@"Cell",@"");
…
}
вместо того, чтобы давать имя идентификатора константы, укажите свой собственный уникальный идентификатор, например:
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = [self getuniqueID];
...
}
Это решит вашу проблему.