美文网首页
ios中的加载动画的实现

ios中的加载动画的实现

作者: summerTa | 来源:发表于2018-07-18 15:05 被阅读0次

  _gifimageView = [[UIImageView alloc]init];

    NSString *path =[[NSBundle mainBundle]pathForResource:@"f2f2f2" ofType:@"gif"];

    NSData *data = [NSData dataWithContentsOfFile:path];

    UIImage*image = [UIImagesd_animatedGIFWithData:data];

    _gifimageView.image= image;

    [self.view addSubview:_gifimageView];

    [_gifimageView mas_makeConstraints:^(MASConstraintMaker *make) {

        make.centerX.mas_equalTo(self.view.mas_centerX);

        make.top.mas_equalTo(100);

        make.size.mas_equalTo(CGSizeMake(71,71));

    }];

相关文章

网友评论

      本文标题:ios中的加载动画的实现

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