As per my title, I have Table view which display lottery tickets in each row and each ticket has it's detail view. Ticket has it's own time for draw. Dynamic tickets are display on table view, right now consider 10 to 15 tickets on the table. First time all are working well.
But when I scroll table 5 to 6 times up and down OR go in detail of ticket 5 to 6 times then table hang. Issue is only NSTimer, I repeat timer for every second. When I was removed timer then table was not hanged. I also try to remove reusability of cell by following code, but didn't work me.
NSString *CellIdentifier = [NSString stringWithFormat:@"S%1dR%1d",indexPath.section,indexPath.row]; // I know it's bad for us. :(
I also isValid
and nil
before create timer
Anybody had fetched issue like this or can anybody give me suggestion for solve my problem ?