我遵循了Standford CS193P课程并编写了一个程序,可以在ScrollView中嵌入的ImageView中缩放图片。当我捏,它工作,图片将不断“摇晃”。我录制了一段视频:dropbox video link
我的代码非常简单:
-(UIView *) viewForZoomingInScrollView:(UIScrollView *)scrollView{
return self.imageView;
}
- (void)viewDidLoad{
[super viewDidLoad];
self.scrollView.delegate=self;
self.scrollView.contentSize=self.imageView.frame.size;
self.imageView.frame=CGRectMake(0, 0, self.imageView.frame.size.width, self.imageView.frame.size.height);
}
我将max
和min
设置为将故事板放大到5和0.2。
为什么会发生这种震动?