zoukankan      html  css  js  c++  java
  • 图片选择器(UIImagePickerController)

    1、// 1.判断数据源是否可用

        if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {

            // 2.打开相册

            UIImagePickerController *ivPic = [[UIImagePickerController alloc] init];

            ivPic.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

            // 3.设置代理

            ivPic.delegate = self;

            // 4.显示图片选择器

            [self presentViewController:ivPic animated:YES completion:nil];

        }

    2、实现下面的代理方法
    (默认实现了下面的方法后,就需要手机释放图片选择器了)
    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

    {

        // 1.取出选中的图片

        UIImage *image =  info[UIImagePickerControllerOriginalImage];

        // 2.设置图片到imageview上

        self.iconView.image = image;

        // 3.关闭图片选择器

        [picker dismissViewControllerAnimated:YES completion:nil];

    }

  • 相关阅读:
    关于iOS中页面启动加载的相关问题汇总
    文件上传与解析漏洞
    XSS跨站攻击
    SQL注入
    DOS&&Linux命令大全
    信息收集相关
    进制转化
    PYQT5 in Python
    将博客搬至CSDN
    Python报文操作模块scapy
  • 原文地址:https://www.cnblogs.com/bluceZ/p/3935999.html
Copyright © 2011-2022 走看看