zoukankan      html  css  js  c++  java
  • 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];

  • 相关阅读:
    Redis 实现队列优先级
    Redis 实现安全队列
    快速理解linux流编辑器sed命令
    Varnish 简介
    手机访问本地服务器
    javascript类的类比详解-大白话版
    优秀前端工程师应该掌握的内容(转自:github)
    mongodb初步使用
    Markdown 语法速查表
    pace.js和NProgress.js两个加载进度插件的一点小总结
  • 原文地址:https://www.cnblogs.com/PJXWang/p/5425580.html
Copyright © 2011-2022 走看看