メール、FB、またはユーザーが望むものを介して UIView のスクリーンショットを共有したいだけです! 以下のコードは、テキストが入力されておらず、画像も変更されていない UIView のオリジナルのみを取得します。
CGRect rect = [mainView bounds];
UIGraphicsBeginImageContextWithOptions(rect.size,YES,0.0f);
CGContextRef context = UIGraphicsGetCurrentContext();
[mainView.layer renderInContext:context];
UIImage *capturedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();