在我的应用程序中,我有一个 UIScrollView(在水平滚动模式下)和一个按钮,当用户点击该按钮时,将在滚动视图中添加一个视图快照作为 uiimageview,我已经这样做了,
UIGraphicsBeginImageContext(storyCreateView.frame.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[storyCreateView.layer renderInContext:context];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
newscene.image=screenShot;
[galleryView addSubview:newscene];
当用户添加更多图像时,图像隐藏在滚动视图下我想自动滚动到右侧,以便用户能够看到他最后添加的图像。