首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

UIScrollView 自动滚动相本

2012-09-25 
UIScrollView 自动滚动相册假如你用UIScrollView制作了一个横向的相册,并且每页显示一张图,有点想很多网站

UIScrollView 自动滚动相册

假如你用UIScrollView制作了一个横向的相册,并且每页显示一张图,有点想很多网站首页的广告//广告定时任务[NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(scrollTimer) userInfo:nil repeats:YES];//设置滚动-(void)scrollTimer{        timerCount++;    if (timerCount >= 4) {        timerCount=0;    }    [adView setContentOffset:CGPointMake(tableWidth * timerCount, 0)animated:YES];    [pageControl setCurrentPage:timerCount];}

热点排行