Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 71  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can i disable/Stop Diagonal scrolling of a UI Table View?
  2. - (void)scrollViewDidScroll:(UIScrollView *)scrollView {
  3.  
  4. if (scrollView == _programGuideTable) {
  5.     _channelGuideTable.contentOffset = CGPointMake(_channelGuideTable.contentOffset.x, _programGuideTable.contentOffset.y);
  6.  
  7.     return;
  8. }
  9. if (scrollView == _channelGuideTable) {
  10.     _programGuideTable.contentOffset = CGPointMake(_programGuideTable.contentOffset.x, _channelGuideTable.contentOffset.y);
  11.  
  12.     return;
  13. }
  14. }