objective-c - iOS上ScrollView上的Button问题
PHP中文网
PHP中文网 2017-04-18 09:22:44
0
2
234

button添加到ScrollView上,点击效果没了。
通过设置ScrollView.delaysContentTouches = NO;
点击效果回来了,但是button区域的滑动ScrollView失效。
因为button较多所以设置上面的那个不行 有没有好的解决办法。

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(2)
黄舟

1. Define a UIScrollView class and rewrite the following methods

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [[self nextResponder] touchesBegan:touches withEvent:event];
    [super touchesBegan:touches withEvent:event];
}

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    [[self nextResponder] touchesMoved:touches withEvent:event];
    [super touchesMoved:touches withEvent:event];
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
    [[self nextResponder] touchesEnded:touches withEvent:event];
    [super touchesEnded:touches withEvent:event];
}

In this way, you can get the click event of the button. I will give you a link to take a look at the specific reason.
Link description

Peter_Zhu

Can you put a view on the scrollView

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!