Rens Verhage

Results 4 comments of Rens Verhage

Of course: - (UIView *)swipeView:(SwipeView *)swipeView viewForItemAtIndex:(NSInteger)index reusingView:(UIView *)view { NewsItem *newsItem = [_newsItems objectAtIndex:index]; ShowNewsItemView *showNewsItemView = (ShowNewsItemView *) view; if (showNewsItemView == nil) { showNewsItemView = [[ShowNewsItemView alloc]...

Hi Nick, I created a small test project to reproduce the issue. You can find it here: https://github.com/verhage/swipeview_issue Just run it in the simulator (iOS 5.0+) and you'll see that...

Hmmm, I just got a step closer to resolving the issue. Seems it has something to do with the CSS. Right now, the CSS is in its own file and...

Thanks, didn't think of that one :) Got a 'solution' to the flickering. Flickering only occurs when the first load has succeeded, when the content is replaced with itself. My...