码迷,mamicode.com
首页 > 其他好文 > 详细

循环轮转,

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

标签:ar   new   on   sp   c   user   view   class   

-(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

循环轮转,

标签:ar   new   on   sp   c   user   view   class   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!