1

在我的应用程序中,我有一个 UIScrollView(在水平滚动模式下)和一个按钮,当用户点击该按钮时,将在滚动视图中添加一个视图快照作为 uiimageview,我已经这样做了,

UIGraphicsBeginImageContext(storyCreateView.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();

[storyCreateView.layer renderInContext:context];


UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext(); 


newscene.image=screenShot;
[galleryView addSubview:newscene];

当用户添加更多图像时,图像隐藏在滚动视图下我想自动滚动到右侧,以便用户能够看到他最后添加的图像。

4

1 回答 1

1

您可以使用setContentOffset:animated:. 它设置与接收者原点相对应的内容视图原点的偏移量。

希望它对你有用。

于 2012-11-01T12:38:49.730 回答