私のサンプルコード:
- (IBAction)captureButton:(id)sender {
captureButton.hidden = YES;
currImage = [signatureViewController imageWithView:self.view];
NSLog (@"image %@",currImage);
imgView = [[UIImageView alloc]initWithFrame:CGRectMake(150,100,300,150)];
imgView.backgroundColor = [UIColor blackColor];
imgView.image = currImage;
[self.view addSubview:imgView];
image.image = nil;
}
私の問題は、キャプチャボタンがビューを隠していることです..助けてください
前もって感謝します