美文网首页
iOS 一款简单实用的vipView

iOS 一款简单实用的vipView

作者: 空手接键盘 | 来源:发表于2018-08-20 14:59 被阅读12次

    地址:https://github.com/dustylove/vip

    Untitled.gif

    使用方法:

    - (void)viewDidLoad {
        [super viewDidLoad];
        self.view.backgroundColor = UIColor.whiteColor;
        NSArray *imgs = @[[UIImage imageNamed:@"会员"],[UIImage imageNamed:@"会员"],[UIImage imageNamed:@"会员"],[UIImage imageNamed:@"会员"],[UIImage imageNamed:@"会员"],[UIImage imageNamed:@"会员"]];
        NSArray *titles = @[@"vip",@"vip1",@"vip2",@"vip3",@"vip4",@"vip5"];
        ArcView *view = [[ArcView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 300) imgs:imgs titles:titles maxScale:1.4 margin:UIEdgeInsetsMake(0, 50, 20, 50) defultIndex: 2 actionBlock:^(NSInteger index) {
            NSLog(@"滑到--%ld",(long)index);
        }];
        [self.view addSubview:view];
    }
    

    相关文章

      网友评论

          本文标题:iOS 一款简单实用的vipView

          本文链接:https://www.haomeiwen.com/subject/fchliftx.html