gpt4 book ai didi

objective-c - 当我尝试在我的 UIScrollview 上向下滚动时,它弹回原来的位置

转载 作者:太空狗 更新时间:2023-10-30 03:45:55 24 4
gpt4 key购买 nike

好的,所以我在我的应用程序中使用了 UIScrollView。我已将 ScrollView 放在 Storyboard的 View Controller 中。我在那里有几个按钮和一些标签。但是当我尝试向下滚动到底部的按钮时, ScrollView 会弹回顶部。这是我使用的代码:

在viewcontroller.h中:

@interface ViewController : UIViewController{

IBOutlet UIScrollView *hovscroll;
}
@end

在viewcontroller.m中:

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];

[hovscroll setScrollEnabled:YES];
[hovscroll setContentSize:CGSizeMake(320, 1500) ];

}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];

}

@end

最佳答案

您需要禁用分页。有(至少)两种方法可以做到这一点:

  • 在 Storyboard 中,选择 UIScrollView 组件,并在“Attributes Inspector”中取消勾选“Paging Enabled”。

  • 在代码中,通过使用:

    scrollView.pagingEnabled = FALSE;

关于objective-c - 当我尝试在我的 UIScrollview 上向下滚动时,它弹回原来的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13894902/

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