首页 > 其他 > 详细

循环轮转,

时间:2014-08-20 11:47:06      阅读:247      评论:0      收藏:0      [点我收藏+]

-(void)scrollByTimer

{

    CGPoint oldoffset = cellScrollView.contentOffset;

    CGPoint newOffset = CGPointMake(cellScrollView.contentOffset.x+320, cellScrollView.contentOffset.y);

    if (oldoffset.x >= 320*(cellData.count-1)) {

        CGPoint beginPoint = CGPointMake(0, cellScrollView.contentOffset.y);

        [cellScrollView setContentOffset:beginPoint animated:YES];

    }else{

        [cellScrollView setContentOffset:newOffset animated:YES];

    }

}

 

-(void)scheduleTimer

{

    [NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(scrollByTimer) userInfo:Nil repeats:YES];

}

循环轮转,,布布扣,bubuko.com

循环轮转,

原文:http://www.cnblogs.com/guligei/p/3924074.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!