bits about life, coding and stuff
Because it took me AGES. Here’s the snippet. UIScrollView *scrollView = _tableViewController.tableView; if(scrollView.contentOffset.y >= scrollView.contentSize.height – scrollView.frame.size.height) { MRDINFO(@"we are at bottom"); _needScrollDown = YES; }else { MRDINFO(@"we’re somewhere else");
This took me hours, maybe it helps someone out there. On OS 3.1 and up, the MobileSafari Frame works as you would expect. Links are opened in the current frame as there is no possibility to open another tab if the browser is embedded. But that’s not the case for 3.0. So we add a [...]