美文网首页
iOS应用开发实战(4)-Image

iOS应用开发实战(4)-Image

作者: 逸飞u | 来源:发表于2016-03-06 17:46 被阅读31次

    这节课杨武老师讲了Image和动画的制作


    越来越复杂的iOS设备...

    多样的iOS设备.jpg

    导致Image管理的复杂...

    Assert Catalog

    Assets_xcassets.jpg Assets_xcassets2.png

    Demo1:

    • 完成后的样子:
    helloImage.png
    • Tips:
    1. 矢量图需要开这个选项


      矢量图选择.png
    2. 边框的边缘可以选择不缩放


      四周不缩放.png

    Demo2:动画

    • 代码
      //创建数组(图片以vectanimx命名)
      UIImage image=[UIImage animatedImageNamed:@"vectanim" duration:3];
      NSArray<UIImage
      > *imageArray = [NSArray arrayWithArray:image.images];
      //赋值
      self.animatedImageView1.animationImages=imageArray;
      //周期时间
      self.animatedImageView1.animationDuration=3;
      //重复次数,0为无限制
      self.animatedImageView1.animationRepeatCount=1;
      //开始
      [self.animatedImageView1 startAnimating];
      [self performSelector:@selector(stopImage) withObject:nil afterDelay:3];

    相关文章

      网友评论

          本文标题:iOS应用开发实战(4)-Image

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