zoukankan      html  css  js  c++  java
  • IOS

    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)selectedImage editingInfo:(NSDictionary *)editingInfo {  

        NSData *data;  

      if ([UIImagePickerController isSourceTypeAvailable: UIImagePickerControllerSourceTypePhotoLibrary])  {

        // Set source to the Photo Library  

             picker.sourceType =UIImagePickerControllerSourceTypePhotoLibrary;

        if (selectedImage) {

          // save image  

         }

        if (pickerController == picker)  {//这里的条件随便你自己定义了  

          //**主要就是下面这句话,会让你继续回到take camera的页面  

             pickerController.sourceType =    UIImagePickerControllerSourceTypeCamera;  

               } else {  

                  [picker dismissModalViewControllerAnimated:YES];  

              }  

          }  

    }  

  • 相关阅读:
    idea初始化配置
    常用网址
    linux改错了profile文件
    获得ip地址[转载]
    java 基本数据类型转换
    log4j配置概要
    HTTP状态码
    HTTP 的请求方式
    10、类和方法
    9、一切都是对象
  • 原文地址:https://www.cnblogs.com/tx8899/p/3970320.html
Copyright © 2011-2022 走看看