开发者社区> 问答> 正文

自动滚动scrollview的问题

我的问题是,我要展现给用户的内容放在scrollview中,让内容从上到底自动滚动,我最开始用的是DDAutoscrollview,没实现,哪位好心人帮帮忙吧。不胜感激。

.h文件

 @interface Interface1 : UIViewController {

    IBOutlet UIScrollView *scroller;
    IBOutlet UILabel *warnung;

}
@property (nonatomic, retain) IBOutlet UIScrollView* scrollView;

.m文件

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    CGPoint bottomOffset = CGPointMake(self.scrollView.contentOffset.x, self.scrollView.contentSize.height - self.scrollView.bounds.size.height);
    [self.scrollView setContentOffset:bottomOffset animated:NO];

    CGPoint newOffset = self.scrollView.contentOffset;
    newOffset.y = 0;
    [self.scrollView setContentOffset:newOffset animated:YES];
}

- (void)viewDidLoad
{

    [scroller setScrollEnabled:YES];
    [scroller setContentSize:CGSizeMake(320, 420)];

        [super viewDidLoad];
}


thanks

展开
收起
爵霸 2016-05-27 11:28:28 1914 0
1 条回答
写回答
取消 提交回答
  • 使用setContentOffset:animated:

    UIScrollView *scrollView = ...;
    CGPoint newOffset = scrollView.contentOffset;
    newOffset.y = 0;
    [scrollView setContentOffset:newOffset animated:YES];

    如果你想要开场动画的效果,在scrollView的viewcontroller实现

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        // ...
    
        CGPoint bottomOffset = CGPointMake(self.scrollView.contentOffset.x, self.scrollView.contentSize.height - self.scrollView.bounds.size.height);
        [self.scrollView setContentOffset:bottomOffset animated:NO];
    }
    - (void)viewDidAppear:(BOOL)animated
    {
        [super viewDidAppear:animated];
    
        CGPoint newOffset = self.scrollView.contentOffset;
        newOffset.y = 0;
        [self.scrollView setContentOffset:newOffset animated:YES];
    }

    补充:

    移动的慢点,用timer实现:

    - (void)viewDidLoad
    {
        [super viewDidLoad];
    
        // ...
    
        CGPoint bottomOffset = CGPointMake(self.scrollView.contentOffset.x, self.scrollView.contentSize.height - self.scrollView.bounds.size.height);
        [self.scrollView setContentOffset:bottomOffset animated:NO];
    }
    
    
    - (void)viewDidAppear:(BOOL)animated
    {    
        [super viewDidAppear:animated];
    
        CGPoint bottomOffset = CGPointMake(self.scrollView.contentOffset.x, self.scrollView.contentSize.height - self.scrollView.bounds.size.height);
    
        //设置延迟时间
        float scrollDurationInSeconds = 4.0;
    
        //计算timer间隔
    
    
        float totalScrollAmount = bottomOffset.y;
        float timerInterval = scrollDurationInSeconds / totalScrollAmount;
    
        [NSTimer scheduledTimerWithTimeInterval:timerInterval target:self selector:@selector(scrollScrollView:) userInfo:nil repeats:YES];
    }
    
    - (void)scrollScrollView:(NSTimer *)timer
    {
        CGPoint newScrollViewContentOffset = self.scrollView.contentOffset;
    
        //向上移动 1px
        newScrollViewContentOffset.y -= 1;
    
    
        newScrollViewContentOffset.y = MAX(0, newScrollViewContentOffset.y);
    
        //如果到顶了,timer中止
        if (newScrollViewContentOffset.y == 0) {
            [timer invalidate];
        }
    
        //最后设置scollView's contentOffset
        self.scrollView.contentOffset = newScrollViewContentOffset;
    }
    2019-07-17 19:17:31
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载