ALAssetsLibrary の writeImageToSavedPhotosAlbum メソッドを使います。
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
UIImage* img = self.imageView.image;
[library writeImageToSavedPhotosAlbum:img.CGImage orientation:ALAssetOrientationUp completionBlock:^(NSURL *assetURL, NSError *error) {
if (error) {
//エラー処理
}
}];