This started to happen out of the blue. Any ideas: Code:
CUSTOMCLASSNAME (I have replaced the actual class name as it contains the name of the client.)
Initialis
can you try the following (provided you do not have any specific configuration for a cell at that indexpath) :-
CustomClassName *cell=[tableView dequeueReusableCellWithIdentifier:[self reuseIdentifier]];
if(cell==nil)
{
cell=[[CustomClassName alloc] initWithStyle:whatever_style reuseIdentifer:[self reuseIdentifier]];
}
Please also post what error you are getting if the above does not work.
Also have a look at the following link:-
What is the meaning of the "no index path for table cell being reused" message in iOS 6/7?