我目前拍攝照片時使用此驗證碼調整大小的UIImage從的UIImagePickerController
- (void) cameraButtonSelected
{
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController:picker animated:YES completion:NULL];
}
我允許用戶編輯照片,但是當我使用這個委託方法由於某種原因的UIImagePickerController不會從刪除鑑於用戶後,按壓了「使用的照片」
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
我想知道
- 如何我從視圖中刪除後的UIImagePickerController「使用照片」按鈕按下
- 我如何調整我剛拍攝,因爲我需要一個較小的變種發送到我的服務器
任何幫助,將不勝感激的照片。