(IBAction)captureButton:(id)sender {
captureButton.hidden = YES;
cancelButton.hidden = YES;
currImage = [signatureViewController imageWithView:self.view];
NSLog (@"image %@",currImage);
imgView = [[UIImageView alloc]initWithFrame:CGRectMake(150,100,300,350)];
imgView.backgroundColor = [UIColor blackColor];
imgView.image = currImage;
[self.view addSubview:imgView];
}
捕获 imageView 现在需要将其传递给第一个 Controller 中的 signView。