我想将用户在第一个视图控制器中拍摄的照片数据自动传递给另一个视图控制器,以便用户可以裁剪它,然后将其保存到“目录或其他东西”中(尚未决定)。
这是我的代码。h 文件
@interface ViewController : UIViewController <UIImagePickerControllerDelegate,
UINavigationControllerDelegate> {
UIImagePickerController *picker;
UIImagePickerController *picker2;
UIImage *image;
IBOutlet UIImageView *imageview;
}
- (IBAction)TakePhoto;
但是我在图片中有这样的错误,我不知道为什么会这样。 http://tinypic.com/view.php?pic=29nyxli&s=5
我也放了
@property (nonatomic, retain) UIImage *theImage;
对于第二个视图控制器(CropViewController)中的 .h 文件。我没有在 .m 文件中添加任何内容..