缩放整个ScrollView
我在 UIScrollView 中有一系列 PDFScrollView(如 Apple Developer 示例代码中给出的),但我希望它们同时滚动,无论 ScrollView 中的哪个位置发生捏缩放操作,目前这只发生在一个 PDFScrollView 被挤压,另一个保持相同大小。我在这里试图实现的基本目标是使一系列 PDF 对用户来说就像一个同构 PDF。
I have a series of PDFScrollViews (like the one given in the sample code on Apple Developer) inside a UIScrollView but I want them to all scroll at once no matter where in the ScrollView the Pinch-Zoom action happens, currently this only happens to the one PDFScrollView that is pinched and the other stay the same size. The basic goal I'm trying to achieve here is to make a series of PDFs act as one homogeneous PDF to the user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现滚动视图的委托方法
-(UIView *) viewForZoomingInScrollView: (UIScrollView *) ScrollView
并返回您的 PDF 视图。
希望它能起作用
implement scroll view's delegate method
-(UIView *) viewForZoomingInScrollView: (UIScrollView *) ScrollView
And return your PDF view.
hope it 'll work