このコードを iphone シミュレーターでテストすることはできませんが、UIImagepickercontroller クラスで誰かが撮影した写真にキャプションを追加する最良の方法であるかどうか疑問に思っていました。
- (void)imagePickerController:(UIImagePickerController *) Picker
didFinishPickingMediaWithInfo:(NSDictionary *)info {
_selectedImage.image = [info objectForKey:UIImagePickerControllerOriginalImage];
UITextField *caption= [[UITextField alloc] initWithFrame:CGRectMake( 60,640,200,40)];
caption.borderStyle = UITextBorderStyleRoundedRect;
caption.font = [UIFont systemFontOfSize:15];
caption.placeholder = @"Type Caption";
[caption release];
}