|
|
@@ -311,22 +311,22 @@
|
|
|
_presentedViewController = vc;
|
|
|
|
|
|
_alertController = [UIAlertController
|
|
|
- alertControllerWithTitle:@"사진 선택"
|
|
|
+ alertControllerWithTitle:NSLocalizedString(@"사진 선택", @"사진 선택")
|
|
|
message:nil
|
|
|
preferredStyle:UIAlertControllerStyleActionSheet];
|
|
|
|
|
|
- UIAlertAction* album = [UIAlertAction actionWithTitle:@"사진앨범" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
|
|
|
+ UIAlertAction* album = [UIAlertAction actionWithTitle:NSLocalizedString(@"사진앨범", @"사진앨범") style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
|
|
|
[_alertController dismissViewControllerAnimated:YES completion:nil];
|
|
|
[self showImagePickerController:UIImagePickerControllerSourceTypePhotoLibrary];
|
|
|
}];
|
|
|
|
|
|
- UIAlertAction* camera = [UIAlertAction actionWithTitle:@"카메라" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
|
|
|
+ UIAlertAction* camera = [UIAlertAction actionWithTitle:NSLocalizedString(@"카메라", @"카메라") style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
|
|
|
[_alertController dismissViewControllerAnimated:YES completion:nil];
|
|
|
[self showImagePickerController:UIImagePickerControllerSourceTypeCamera];
|
|
|
}];
|
|
|
|
|
|
|
|
|
- UIAlertAction* cancel = [UIAlertAction actionWithTitle:@"취소" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
|
|
|
+ UIAlertAction* cancel = [UIAlertAction actionWithTitle:NSLocalizedString(@"취소", @"취소") style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
|
|
|
[_alertController dismissViewControllerAnimated:YES completion:nil];
|
|
|
}];
|
|
|
|