
Untitled
By: a guest on
May 9th, 2012 | syntax:
None | size: 0.47 KB | hits: 71 | expires: Never
How can i disable/Stop Diagonal scrolling of a UI Table View?
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView == _programGuideTable) {
_channelGuideTable.contentOffset = CGPointMake(_channelGuideTable.contentOffset.x, _programGuideTable.contentOffset.y);
return;
}
if (scrollView == _channelGuideTable) {
_programGuideTable.contentOffset = CGPointMake(_programGuideTable.contentOffset.x, _channelGuideTable.contentOffset.y);
return;
}
}