ios 图片上传与压缩,UIImagePickerController设置中文

普通效果

 

 

1.添加协议

<UIImagePickerControllerDelegate, UINavigationControllerDelegate>

2.添加UIImagePickerController

@property (nonatomic, strong) UIImagePickerController *imagePick;           //用于上传图片

3.初始化UIImagePickerController

self.imagePick = [[UIImagePickerController alloc]init];
    self.imagePick.delegate = self;

4.弹框选择

//选取相册内的图片
- (void)changeHeadImageAction {
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    //按钮:从相册选择,类型:UIAlertActionStyleDefault
    [alert addAction:[UIAlertAction actionWithTitle:@"从相册选择" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        self.imagePick.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        //        imagePick.mediaTypes = @[(NSString *)kUTTypeImage];
        self.imagePick.allowsEditing = YES;
        [self presentViewController:self.imagePick animated:YES completion:nil];
    }]];
    //按钮:拍照,类型:UIAlertActionStyleDefault
    [alert addAction:[UIAlertAction actionWithTitle:@"拍照" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
        if ([UIImagePickerController isCameraDeviceAvailable:UIImagePickerControllerCameraDeviceRear]) {
            self.imagePick.sourceType = UIImagePickerControllerSourceTypeCamera;
            [self presentViewController:self.imagePick animated:YES completion:nil];
        }else{
            NSLog(@"摄像头貌似不支持...");
        }
    }]];
    //按钮:取消,类型:UIAlertActionStyleCancel
    [alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
        
    }]];
    [self presentViewController:alert animated:YES completion:nil];
}

5.实现协议方法

// 取消选择照片
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{
    [picker dismissViewControllerAnimated:YES completion:nil];
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{
    
    [picker dismissViewControllerAnimated:NO completion:nil];
    UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];

    //压缩照片,这个base64就是需要上传到服务器的图片数据
    [image drawInRect:CGRectMake(0, 0, 150, 266)];
    NSData *data = UIImageJPEGRepresentation(image, 0.0f);
    NSString *base64 = [data base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];
       
}

-(void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    viewController.navigationItem.rightBarButtonItem.tintColor = [UIColor whiteColor];
    viewController.navigationItem.leftBarButtonItem.tintColor = [UIColor whiteColor];
    //设置标题颜色
    NSDictionary *dic=[NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName];
    self.navigationController.navigationBar.titleTextAttributes = dic;
}

- (void)doCancel:(id)b {
    NSLog(@"doCancel");
    [self.imagePick dismissViewControllerAnimated:YES completion:nil];
}

6.设置相册里面的文字为汉字

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//    [NSUserDefaults standardUserDefaults] setObject:@"zh-Hans" forKey:NSLangu;
    
    [[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithObjects:@"zh-Hans", nil] forKey:@"AppleLanguages"];
    [[NSUserDefaults standardUserDefaults] synchronize];

    return YES;
}

然后在下面这个位置添加中文

转载于:https://www.cnblogs.com/qiyiyifan/p/9155592.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值