博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS imagePicker使用方法,方便使用!三步轻松搞定!
阅读量:5879 次
发布时间:2019-06-19

本文共 2262 字,大约阅读时间需要 7 分钟。

自己总结的修改头像的方法,只为方便自己查询使用!转发

步骤:1、遵守代理协议

<UIImagePickerControllerDelegate,UINavigationControllerDelegate,UIActionSheetDelegate>

2、点击事件{

 

    UIActionSheet *choosePhotoActionSheet;

    

    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {

        choosePhotoActionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"选取图片", @"")

                                                             delegate:self

                                                    cancelButtonTitle:NSLocalizedString(@"取消", @"")

                                               destructiveButtonTitle:nil

                                                    otherButtonTitles:NSLocalizedString(@"相机", @""), NSLocalizedString(@"相册", @""), nil];

    } else {

        choosePhotoActionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"选取图片", @"")

                                                             delegate:self

                                                    cancelButtonTitle:NSLocalizedString(@"取消", @"")

                                               destructiveButtonTitle

                                                                     :nil

                                                    otherButtonTitles:NSLocalizedString(@"相册", @""), nil];

    }

    

    [choosePhotoActionSheet showInView:self.view];

 

}

3、实现代理方法

#pragma mark - UIActionSheetDelegate

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex

{

    NSUInteger sourceType = 0;

    if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {

        switch (buttonIndex) {

            case 0:

                sourceType = UIImagePickerControllerSourceTypeCamera;

                break;

            case 1:

                sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

                break;

            case 2:

                return;

        }

    } else {

        if (buttonIndex == 1) {

            return;

        } else {

            sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;

        }

    }

    

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

    imagePickerController.delegate = self;

    imagePickerController.allowsEditing = YES;

    imagePickerController.sourceType = sourceType;

    [self presentViewController:imagePickerController animated:YES completion:^{

        

    }];

}

 

#pragma mark - UIImagePickerControllerDelegate

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info

{

    [self dismissViewControllerAnimated:YES completion:^{

        

    }];

    self.tmpHeaderImg = [info objectForKey:UIImagePickerControllerEditedImage];

    [self.imageViewUserHead setImage:self.tmpHeaderImg];

    [self uploadImage];

}

 

- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker

{

    [self dismissViewControllerAnimated:YES completion:^{

        

    }];

}

 

转载于:https://www.cnblogs.com/JASON-SONG/p/4930302.html

你可能感兴趣的文章
Ruby的case语句
查看>>
Linux的链接文件-ln命令
查看>>
maven的tomcat插件如何进行debug调试
查看>>
table表头固定
查看>>
截取字符串中两个字符串中的字符串
查看>>
spring xml properties split with comma for list
查看>>
判断点是否在三角形内
查看>>
Android实战简易教程-第二十三枪(基于Baas的用户注冊验证username是否反复功能!)...
查看>>
在odl中怎样实现rpc
查看>>
leetcode 110 Balanced Binary Tree
查看>>
python活用isdigit方法显示系统进程
查看>>
项目开发总结
查看>>
知行合一
查看>>
jmeter插件之jsonpath提取响应结果和做断言
查看>>
发布支持多线程的PowerShell模块 —— MultiThreadTaskRunner
查看>>
Ubuntu ctrl+alt会导致窗口还原的问题
查看>>
第四十期百度技术沙龙笔记整理
查看>>
推荐系统那点事 —— 基于Spark MLlib的特征选择
查看>>
linux 下RTL8723/RTL8188调试记录(命令行)【转】
查看>>
SpringMVC案例1——对User表进行CRUD操作
查看>>