我是xcode和objective c的新手,我想知道如何使用輕擊手勢使圖像全屏觸摸... 任何人都可以幫助我?如何在iOS應用程序中使圖像變成全屏應用程序
這裏是我試過的代碼:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
tap.numberOfTapsRequired = 1;
tap.cancelsTouchesInView = NO;
imageView.userInteractionEnabled = YES;
[imageView addGestureRecognizer:tap];
}
-(void)handleTap{
imageView.frame=CGRectMake(0,0,320,480);
}
檢查:-http://stackoverflow.com/questions/9008975/how-to-tap-to-zoom-and-double-tap-to-zoom-out-with-uiscrollview –
不忘記imageView.contentMode = UIViewContentModeScaleToFill; –