- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个扩展的 UIScrollView,它直接取自 Apple 文档示例项目“ZoomingPDFViewer”
如果你得到这个项目,你会注意到它的 UIScrollView 扩展类“PDFScrollView”在你运行它时有一个明显的错误(在 sim 和设备上)
如果您将缩放缩放得足够远,您最终会达到 StoryBoard 设置的缩放比例限制...但是随后,您可以重新缩放并继续超过限制。
我一直在尝试在自己的项目中实现这个类,而这个错误也随之而来。
出于某种原因,在缩放结束后,UIScrollView 的 zoomScale 属性被任意设置回 1.0,因此您可以有效地将缩放缩放到无限远...请记住,重置的 zoomScale 不会影响内容。 .. 所以您可以继续缩小,直到演示中的 PDF 只是屏幕上的一个像素。
我以前从未见过这个,我以前做过很多自定义 UIScrollView。
我已经尝试了几个步骤来解决它,但似乎没有任何效果。有谁知道什么会导致 UIScrollView 以这种方式重置其 zoomScale?
我认为这可能是因为在缩放期间删除和添加了 subview ,但我在 ScrollView 中放置了一个虚拟 View 作为 anchor ,但也没有用。
就像我说的.. ZoomingPDFViewer 是我正在使用的确切代码,使用 iOS 6.0
如有任何想法,我们将不胜感激。下面的示例代码
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale
{
NSLog(@"Ending Zoom %0.2f %0.2f", [self zoomScale], scale);
// Set the new scale factor for the TiledPDFView.
_PDFScale *= scale;
// Calculate the new frame for the new TiledPDFView.
CGRect pageRect = CGPDFPageGetBoxRect(_PDFPage, kCGPDFMediaBox);
pageRect.size = CGSizeMake(pageRect.size.width*_PDFScale, pageRect.size.height*_PDFScale);
// Create a new TiledPDFView based on new frame and scaling.
TiledPDFView *tiledPDFView = [[TiledPDFView alloc] initWithFrame:pageRect scale:_PDFScale];
[tiledPDFView setPage:_PDFPage];
// Add the new TiledPDFView to the PDFScrollView.
[self addSubview:tiledPDFView];
self.tiledPDFView = tiledPDFView;
NSLog(@"End of end zoom %0.2f", [self zoomScale]);
}
这是结束滚动委托(delegate)...这两个日志都会产生一个 zoomScale,这正是您所期望的...所以...假设您实际缩放了 1.0 以外的任何数字。
然后调用 layoutSubviews..
// Use layoutSubviews to center the PDF page in the view.
- (void)layoutSubviews
{
[super layoutSubviews];
// Center the image as it becomes smaller than the size of the screen.
CGSize boundsSize = self.bounds.size;
CGRect frameToCenter = self.tiledPDFView.frame;
// a bunch of code that sets frameToCenter
self.tiledPDFView.frame = frameToCenter;
self.backgroundImageView.frame = frameToCenter;
/*
To handle the interaction between CATiledLayer and high resolution screens, set the tiling view's contentScaleFactor to 1.0.
If this step were omitted, the content scale factor would be 2.0 on high resolution screens, which would cause the CATiledLayer to ask for tiles of the wrong scale.
*/
self.tiledPDFView.contentScaleFactor = 1.0;
NSLog(@"Subviews Layed Out %0.2f", [self zoomScale]);
}
此时,无论发生什么情况,zoomScale 都会报告回 1.0...这会在 End Zoom 委托(delegate)方法报告正确的缩放比例后跟踪 0.003 秒。
最佳答案
是的,这发生在 iOS 3 左右。zoomScale
始终相对于 ScrollView 的当前状态,而不是全局测量。每次缩放后,需要重新计算相对于当前整体缩放比例的最小和最大缩放比例。
这是我过去使用过的一些代码。它应该为您提供流程的要点:
尽早获取您需要的值:
- (void) viewDidLoad
{
[super viewDidLoad];
...
// Squirrel away min and max zoom values from nib
sMinZoomScale = self.scrollView.minimumZoomScale; // the very minimum
sMaxZoomScale = self.scrollView.maximumZoomScale; // the very maximum
sGlobalZoomScale = 1.0f; // we're currently at 100% size
...
}
然后是其余部分(self.navigationView
是 scrollView 的内容 View ):
- (void) scrollViewDidEndZooming:(UIScrollView *)scrollView
withView:(UIView *)view
atScale:(CGFloat)scale
{
// after a zoom, change the resolution of our map
sGlobalZoomScale *= scale;
// Peg the scale to minZoom and maxZoom, in case of rounding errors
sGlobalZoomScale = MIN(MAX(sMinZoomScale, sGlobalZoomScale), sMaxZoomScale);
self.navigationView.globalZoomScale = sGlobalZoomScale;
self.navigationView.globalScaleTransform = self.globalScaleTransform;
[self updateResolution];
// throw out all tiles so they'll reload at the new resolution
[self.navigationView setNeedsDisplay];
}
// By the time we get here, the scrollview's applied a fake scale and translate transform, and
// altered the scrollview's zoom scale. BUT, the navigationview is as it ever was.
- (void) updateResolution
{
CGFloat zoomScale = [self.scrollView zoomScale];
CGSize oldContentViewSize = self.navigationView.frame.size;
// zooming properly resets contentsize as it happens.
CGSize newContentSize = self.scrollView.contentSize;
CGPoint newContentOffset = self.scrollView.contentOffset;
CGFloat xMult = newContentSize.width / oldContentViewSize.width;
CGFloat yMult = newContentSize.height / oldContentViewSize.height;
newContentOffset.x *= xMult;
newContentOffset.y *= yMult;
CGFloat currentMinZoom = self.scrollView.minimumZoomScale;
CGFloat currentMaxZoom = self.scrollView.maximumZoomScale;
CGFloat newMinZoom = currentMinZoom / zoomScale;
CGFloat newMaxZoom = currentMaxZoom / zoomScale;
// Reset zoom scales temporarily so we can patch up the revised content view
// don't call our own set..zoomScale, 'cause they eventually call this method. Infinite recursion is uncool.
[self.scrollView setMinimumZoomScale:1.0f];
[self.scrollView setMaximumZoomScale:1.0f];
[self.scrollView setZoomScale:1.0f animated:NO];
[self.navigationView setFrame:CGRectMake(0.0f, 0.0f, newContentSize.width, newContentSize.height)];
[self.scrollView setContentSize:newContentSize];
[self.scrollView setContentOffset:newContentOffset animated:NO];
[self.scrollView setMinimumZoomScale:newMinZoom];
[self.scrollView setMaximumZoomScale:newMaxZoom];
}
希望这对您有所帮助。
关于iphone - 为什么 UIScrollView 会自动重置其 zoomScale 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12642776/
我有一个“设置首选项”屏幕。它有一个 ListPreference 和一个 CheckBoxPreference。当我选择 ListPreference 的一项时,我想更改应用程序的日期格式。另外,通
我试图找到创 build 置/配置窗口的示例。单击菜单项中的“选项”操作可启动设置窗口。我想弄清楚如何从主窗口打开第二个窗口。以及新窗口如何将设置信息返回主窗口。尝试使用 QDialog 或一些继承的
我在 Lnux 上有 Qt 应用程序。我想为此创建一个可执行文件/设置以便在 Windows 上分发它并且不需要安装 Qt。我通过包含所有 dll 为此创建了可执行文件但要运行它,用户需要进入文件夹。
我正在尝试创建一个有点动态的 html 类,它根据类末尾包含的数字设置宽度 %。注意:类名将始终以“gallery-item-”开头 示例:div.gallery-item-20 = 20% 宽度 我
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
在我的应用程序中,我想记住一些变量,例如,如果用户登录过一次,那么他们将在下次重新打开应用程序时登录,或者如果他们决定禁用某些提醒,应用程序可以检查该变量是否是错误的,将不再显示该提醒。理想情况下,这
我在 Netbeans 中开发了一个应用程序,它连接到远程计算机的消息队列并发送消息。该应用程序还有其他功能。项目完成后,我清理并构建应用程序,然后 Netbeans 创建一个 jar 文件。 但我的
我创建了一个 Outlook 加载项,需要创建一个设置以使其可分发(我是新手,所以请原谅新手评论) Outlook -2010 Vs -2010 .Net 4.0 我读了一些地方,最简单的方法就是发
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: How to make installer pack of Java swing Application Proje
这个问题肯定已经被很多人解决过很多次了,但是经过几个小时的研究,我仍然没有找到我要找的东西。 我有一个 ExportSettings.settings 文件,其中包含一堆设置( bool 值、字符串、
我想为我的项目创建一个安装程序,以便它可以安装在任何电脑上而无需安装头文件。我怎样才能做到这一点? 最佳答案 一般有两种分发程序的方法: 源代码分发(要构建的源代码)。最常见的方法是使用 GNU au
如何在这样的动态壁纸中创 build 置 Activity ? Example Picture 我只用一个简单的文本构建了设置 Activity ,但遇到了一些问题。第一个问题是我不能为此 Activ
我用 GUI 创建了一个简单的软件。它有几个源文件。我可以在我的编辑器中运行该项目。我认为它已经为 1.0 版本做好了准备。但我不知道如何为我的软件创 build 置/安装程序。 源代码是python
我的 SettingsActivity当前扩展了 Android Studio 生成的类,AppCompatPreferenceActivity扩展 PreferenceActivity . Acti
我正在使用 .NET 为 IE 开发工具栏。目前,我使用 gacutil 插入我的 .NET 程序集,并使用 regasm 注册我的 COM 程序集。 我想为项目创建一个设置 (MSI),但我似乎无法
在为设置页面创建 Activity 后,我注意到 if (mCurrentValue !== value) 中的 mCurrentValue !== value 返回警告: Identity equa
我在 Visual Studio 10 中创建了一个项目,该项目使用 Mysql 数据库和 Crystalreports 以及 它。但是我不知道如何进行自动安装 Mysql 和 Crystalrepo
我正在尝试在我的 C# 项目中使用 Sqlite 数据库,并且我在 IDE 中做得很好。我的问题是当我为我的项目制作安装包并安装它时,程序无法访问 sqlite 数据库。我也知道这是因为用户没有访问文
我有一个大型 Web 应用程序(带有 11 子系统的 ErP),我想使用 Microsoft WebPI 为它创建一个设置。 目前,我们每周向客户发送一次应用程序(用于每周更新)。 我们在此应用程序中
所以我对工资单申请的最终查询是 - 如何为薪资申请创 build 置? 我需要知道的一切- 如何将设置项目添加到我现有的解决方案 如何将解决方案中的文件添加到安装项目中,以及添加哪些文件添加和在什么文
我是一名优秀的程序员,十分优秀!