2018-05-30

ImageScrollView *guide = [[ImageScrollView alloc]initWithFrame:self.view.frame style:ImageScrollType_Guide images:imgArr confirmBtnTitle:@"立即体验" confirmBtnTitleColor:[UIColor blueColor] confirmBtnFrame:CGRectMake(100, 30, 320, 44) autoScrollTimeInterval:1.0 delegate:self];

    [self.view addSubview:guide];


    //分页控件

    [guide addPageControlToSuperView:self.view];


}

-(void)experienceDidHandle{

    RootViewController*rootVC=[[RootViewController alloc]init];

    AppDelegate*app=(AppDelegate*)[UIApplication sharedApplication].delegate;

    app.window.rootViewController=rootVC;

}

你可能感兴趣的:(2018-05-30)