iOS UIScrollView 无需用户交互和编程滚动

发布于 2024-12-02 07:38:03 字数 65 浏览 5 评论 0原文

是否可以在用户无法滚动的情况下拥有 UIScrollView,因此是否可以以编程方式滚动 UIScrollView?

Is it possible to have a UIScrollView without the user being able to scroll and therefore is it possible to scroll a UIScrollView programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

安稳善良 2024-12-09 07:38:03

是的,您可以使用这些方法以编程方式滚动:

- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated
- (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated

您还可以设置 userInteractionEnabled=NO 来禁用用户触摸事件。

Yes, you can use these methods to scroll programmatically:

- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated
- (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated

You may also set userInteractionEnabled=NO to disable user touching events.

懷念過去 2024-12-09 07:38:03

试试这个:

-(void)scrollViewProgramatically
{
        UIScrollView *scrollview=[[UIScrollView alloc]initWithFrame:CGRectMake(x, y, 250, 150)];
        scrollview.showsVerticalScrollIndicator=YES;
        scrollview.scrollEnabled=YES;
        scrollview.userInteractionEnabled=YES;
        scrollview.backgroundColor = [UIColor whiteColor];
        scrollview.contentSize = CGSizeMake(1250,250);
        [scrollview addSubview:scrollview];
}

Try This:

-(void)scrollViewProgramatically
{
        UIScrollView *scrollview=[[UIScrollView alloc]initWithFrame:CGRectMake(x, y, 250, 150)];
        scrollview.showsVerticalScrollIndicator=YES;
        scrollview.scrollEnabled=YES;
        scrollview.userInteractionEnabled=YES;
        scrollview.backgroundColor = [UIColor whiteColor];
        scrollview.contentSize = CGSizeMake(1250,250);
        [scrollview addSubview:scrollview];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文