gpt4 book ai didi

iPhone SDK ScrollView 显示额外空间

转载 作者:行者123 更新时间:2023-12-03 20:11:31 25 4
gpt4 key购买 nike

我有一个 ScrollView ,其中有一个显示 960x960 图像的 ImageView ,但它滚动到接近 4 倍的图像。我尝试记录所有可能 View 的宽度,所有内容都声称它是 960x960(或更小,我想我记录了屏幕宽度一次......?)

我需要此图像在图像的右下角停止滚动,而不是进入死区。任何帮助将不胜感激。

哎呀,即使告诉我比我的scrollView.contentSize大的对象的名称是什么也会让我走上正确的轨道......

//Test-Image is just a 960 by 960 image that's numbered around the edges 1-10 so you can tell if it's being moved
UIImageView *tempImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Test-Image.png"]];
self.imageView = tempImageView;
[tempImageView release];

scrollView.contentSize = CGSizeMake(imageView.frame.size.width, imageView.frame.size.height);

//Tested with this, results the same.
//[scrollView setContentSize:CGSizeMake(960, 960)];

NSLog(@"What is my scrollView's height attribute?...%f", scrollView.contentSize.height);
// Returns 960
NSLog(@"What is in scrollView's width attribute?...%f", scrollView.contentSize.width);
// Returns 960

scrollView.contentOffset = CGPointMake(480, 480);

scrollView.maximumZoomScale = 8.0;
scrollView.minimumZoomScale = 0.25;
// Commenting clipsToBounds out doesn't seem to have any effect
scrollView.clipsToBounds = YES;
scrollView.delegate = self;

[scrollView addSubview:imageView];

最佳答案

不幸的是,我没有具体的答案。

  • 引用。尝试 [scrollView addSubview: self.imageView];而不是 [...addSubview: imageView];

  • 内容大小。尝试添加 ImageView 后设置内容大小。
    [scrollView setContentSize: CGSizeMake(imageView.frame.size.width, imageView.frame.size.height)];

  • 代表。您是否使用并设置了 ScrollView 的委托(delegate)属性(oIWScroll.delegate = self;)?

  • 剪辑。应该没关系。

  • ScrollView 框架。确保 ScrollView 的框架等于或小于 [UIScreen mainScreen].applicationFrame。

  • 框架。当我遇到与您描述的情况类似的情况时,我所做的一件事是创建一个容器 UIView,将其添加到 ScrollView 并将对象填充到容器 View 中。但您确实不必对一张图像执行此操作。
    我还设置了 contentMode = UIViewContentModeTop。

希望这些建议对您有所帮助。

关于iPhone SDK ScrollView 显示额外空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2337364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com