I have several UITableView
, UIScrollViews
in my app. The tableview and scrollview scrolls smoothly on initial loading. But after the continuous usage of the app for some 7-10 minutes the scrolling really hacks. I implemented lazy loading for UITableView
. I have also a NSTimer
running in the background for polling.
NSRunLoop *runloop = [NSRunLoop currentRunLoop];
pollTimer = [NSTimer timerWithTimeInterval:4 target:self selector:@selector(threadStarter) userInfo:nil repeats:YES];
[runloop addTimer:pollTimer forMode:NSRunLoopCommonModes];
Is this the reason for the stuck in the scrolling of UITableViews.
How can i solve this issue?