• UIImageView


    #if 0

        NSString *path = [[NSBundle mainBundle] resourcePath ];

        NSString *imagePath = [NSString stringWithFormat:@"%@/qq.png",path];

        UIImage *image = [[UIImage alloc] initWithContentsOfFile:imagePath ];

    //   UIImage *image= [UIImage imageNamed:@"qq"]; //会缓存,程序结束时释放

        

        

        //载体

        UIImageView *imageView = [[UIImageView alloc]initWithImage:image];

        imageView.frame = CGRectMake(10, 100, 355, 400);

        

        //内容模式:默认UIViewContentModeScaleToFill

        imageView.contentMode = UIViewContentModeCenter;

        /*

         typedef NS_ENUM(NSInteger, UIViewContentMode) {

         UIViewContentModeScaleToFill,

         UIViewContentModeScaleAspectFit,      // contents scaled to fit with fixed aspect. remainder is transparent

         UIViewContentModeScaleAspectFill,     // contents scaled to fill with fixed aspect. some portion of content may be clipped.

         UIViewContentModeRedraw,              // redraw on bounds change (calls -setNeedsDisplay)

         UIViewContentModeCenter,              // contents remain same size. positioned adjusted.

         UIViewContentModeTop,

         UIViewContentModeBottom,

         UIViewContentModeLeft,

         UIViewContentModeRight,

         UIViewContentModeTopLeft,

         UIViewContentModeTopRight,

         UIViewContentModeBottomLeft,

         UIViewContentModeBottomRight,

         };

         

         */

        

        [self.view addSubview:imageView];

    #endif

        //UIImageView动画,-- 播放序列图

        NSMutableArray *imageArray = [[NSMutableArray alloc]init];

        for (NSInteger i = 1; i<=13; i++) {

            UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"png%zd.png",i]];

            [imageArray addObject:image];

        }

        UIImageView *imageView= [[UIImageView alloc]init];

        imageView.frame = CGRectMake((375-207)/2, 100, 207, 217);

        [self.view addSubview:imageView];

        //设置动画数组

        imageView.animationImages = imageArray;

        //设置播放周期时间

        imageView.animationDuration = 2;

        //执行次数,给0不限制次数

        imageView.animationRepeatCount = 10;

        [imageView startAnimating];

    //    [imageView stopAnimating];

  • 相关阅读:
    在线加密解密
    ctcms Nginx 伪静态
    iTem2 保持连接,解决ssh的"Write failed: Broken pipe"问题
    打开窗口弹出页面
    点击弹窗
    javascript 技巧
    使用Chrome工具来分析页面的绘制状态
    jquery结合JSONP教程—明河谈jquery
    使用 JSONP 实现跨域通信,第 1 部分: 结合 JSONP 和 jQuery 快速构建强大的 mashup
    jsonp详解
  • 原文地址:https://www.cnblogs.com/PJXWang/p/5425580.html
Copyright © 2020-2023  润新知