我有子類UIScrollView。我正在使用scrollview的縮放功能。我想要的是縮放後,我不希望視圖滾動。因此,我執行以下操作。UIScrollView canCancelContentTouches不禁用滾動
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale
{
[self setCanCancelContentTouches:NO];
}
但仍須滾動。
你嘗試過使用此代碼 「scrollView.scrollEnabled = FALSE;」進入這個方法? –