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

UI基础 ScrollView轮播图

时间:2020-07-30 01:48:18      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:pre   sub   定位   code   ima   ++   指定   sel   tor   

root m

 

 

#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    UIScrollView* sv=[[UIScrollView alloc]initWithFrame:CGRectMake(0, 0, 375, 667)];
    
    sv.backgroundColor=[UIColor yellowColor];
    [self.view addSubview:sv];
    
    //设置大小 多大才能装下四张图片
    sv.contentSize=CGSizeMake(375*4, 667);
    //把图片装进去
    for(int i=1; i<=4; i++){
        NSString* name =[NSString stringWithFormat:@"%d.jpg",i];
        UIImage *image =[UIImage imageNamed:name];
        UIImageView* imageV=[[UIImageView alloc] initWithFrame:CGRectMake(375*(i-1), 0, 375, 667)];
        
        imageV.image=image;
        [sv addSubview:imageV];
        
        
        //分页显示
        sv.pagingEnabled=YES;
        //是否允许反弹
        sv.bounces=NO;
        // 修改滚动条样式
        sv.indicatorStyle=UIScrollViewIndicatorStyleWhite;
        //隐藏滚动条
        sv.showsHorizontalScrollIndicator=NO;
        sv.showsVerticalScrollIndicator=NO;
        //滑动到指定位置
        sv.contentOffset=CGPointMake(375, 0);
        
        
        
    }
    
    
}



@end

 

UI基础 ScrollView轮播图

标签:pre   sub   定位   code   ima   ++   指定   sel   tor   

原文地址:https://www.cnblogs.com/zhangqing979797/p/13401279.html

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