我正在使用UIScrollview加载我的两个视图,例如 A 和 B 。它看起来如下图所示。我将 PagingEnabled 设置为 YES ,将 DirectionLockEnabled 设置为 YES 。
当我将视图从A拖动到B时,它会对角线移动。请找到以下代码,
- (void)setupScrollView:(UIScrollView*)scrMain {
for (int i = 0; i < 2; i++) {
if (i == 0) {
// View A
[ViewA setFrame:CGRectMake((i)*scrollview.frame.size.width + 20, 0, scrollview.frame.size.width - 40, ViewA.frame.size.height)];
[scrollview addSubview:ViewA];
} else if (i == 1) {
// View B
[ViewB setFrame:CGRectMake((i)*ViewB.frame.size.width + 30, 0, scrollview.frame.size.width - 40, ViewB.frame.size.height)];
[scrollview addSubview:ViewB];
}
}
[scrollview setContentSize:CGSizeMake((scrollview.frame.size.width-15)*2, ViewB.frame.size.height)];
}
- (void) scrollViewWillBeginDragging: (UIScrollView *) scrollView
{
self.oldContentOffset = scroller.contentOffset;
}
- (void) scrollViewDidScroll: (UIScrollView *) scrollView
{
float XOffset = fabs(self.oldContentOffset.x - scrollView.contentOffset.x );
float YOffset = fabs(self.oldContentOffset.y - scrollView.contentOffset.y );
if (scrollView.contentOffset.x != self.oldContentOffset.x && (XOffset >= YOffset) )
{
scrollView.pagingEnabled = YES;
scrollDirection = ScrollDirectionHorizontal;
}
else
{
scrollView.pagingEnabled = NO;
scrollDirection = ScrollDirectionVertical;
}
}
我查看以下链接,但我还没有得到解决方案, http://bogdanconstantinescu.com/blog/proper-direction-lock-for-uiscrollview.html UIScrollView scrolling in only one direction at a time http://chandanshetty01.blogspot.ae/2012/07/restricting-diagonal-scrolling-in.html
所有帮助表示赞赏!!
答案 0 :(得分:2)
设置directionalLockEnabled = YES;
[self.scrollView setContentSize:CGSizeMake((self.scrollView.frame.size.width-15)*2, self.ViewB.frame.size.height)];
self.scrollView.directionalLockEnabled = YES; // add this here.
通过这样做,它将解决您的问题
根据您的代码回答
- (void)viewDidLoad {
[super viewDidLoad];
[self setupScrollView:self.scrollView];
self.scrollView.directionalLockEnabled = YES;
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)setupScrollView:(UIScrollView*)scrMain {
for (int i = 0; i < 2; i++) {
if (i == 0) {
// View A
self.ViewA = [[UIView alloc] init];
self.ViewA.backgroundColor = [UIColor blackColor];
[self.ViewA setFrame:CGRectMake((i)*self.scrollView.frame.size.width + 20, 0, self.scrollView.frame.size.width - 40, 800)];
[self.scrollView addSubview:self.ViewA];
} else if (i == 1) {
// View B
self.ViewB = [[UIView alloc] init];
self.ViewB.backgroundColor = [UIColor blueColor];
[self.ViewB setFrame:CGRectMake((i)*self.ViewA.frame.size.width + 30, 0, self.scrollView.frame.size.width - 40, 800)];
[self.scrollView addSubview:self.ViewB];
}
}
[self.scrollView setContentSize:CGSizeMake((self.scrollView.frame.size.width-15)*2, self.ViewB.frame.size.height)];
self.scrollView.directionalLockEnabled = YES;
}