- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个在其中一个 View 中具有(图像保存)的应用程序,我有三种不同的尺寸,我希望在用户缩放和缩放从 ScrollView 捕获的图像后将我的图像保存在其中当用户点击保存时。
下面是我的代码:
选择样式后,根据选择的类型设置宽度和高度,然后调用 ScrollView 创建方法
-(void)viewDidAppear:(BOOL)animated{
if(!([getColor length] == 0))
{
[theColored setHidden:NO];
[imageView setImage:image];
[theStyle setHidden:NO];
[theStyled setHidden:YES];
}
if(!([getStyle length] == 0))
{
[theColored setHidden:NO];
[imageView setImage:image];
[theStyle setHidden:YES];
[theStyled setHidden:NO];
[Save setHidden:NO];
if([theType isEqual: @"Pant"]){
theW = 200;
theH = 260;
}else if ([theType isEqual:@"Shirt"])
{
theW = 220;
theH = 220;
}else if([theType isEqual:@"Shoes"])
{
theW = 200;
theH = 60;
}
// UIImage *savedImage = image;
CGFloat theScale = 1.0;
[self setTheView:image andFrameW:&theW andFrameH:&theH andTheScale:&theScale];
}}
方法如下:
-(void)setTheView:(UIImage *)savedImage andFrameW:(CGFloat *)theFW andFrameH:(CGFloat *)theFH andTheScale:(CGFloat *)theScale{
NSLog(@"called");
CGFloat theS = *theScale;
CGFloat imgW ;
CGFloat imgH;
imgW = *theFW * theS;
imgH = *theFH * theS;
// = savedImage.size.height * theS;
[dot removeFromSuperview];
[scrollView setPagingEnabled:NO];
[scrollView setShowsHorizontalScrollIndicator:NO];
[scrollView setShowsVerticalScrollIndicator:NO];
scrollView.layer.masksToBounds=YES;
scrollView.minimumZoomScale = 0.1f;
scrollView.maximumZoomScale = 5.0f;
[scrollView setZoomScale:0.5];
scrollView.layer.borderColor = [UIColor blackColor].CGColor;
scrollView.contentInset = UIEdgeInsetsMake(0, 0, 0, 0);
[scrollView setContentSize:CGSizeMake(imgW*2,imgH*2)];
dot =[[UIImageView alloc] initWithFrame:CGRectMake(imgW/2,imgH/2,imgW,imgH)];
dot.image=savedImage;
dot.contentMode = UIViewContentModeScaleAspectFit;
[scrollView setScrollEnabled:YES];
[scrollView setTranslatesAutoresizingMaskIntoConstraints:YES];
scrollView.frame = CGRectMake(scrollView.frame.origin.x,scrollView.frame.origin.y, *theFW , *theFH);
[scrollView setHidden:NO];
[scrollView setContentOffset:CGPointMake(imgW/2,imgH/2) animated:NO];
[scrollView addSubview:dot];
}
缩放方法:
- (UIView *) viewForZoomingInScrollView:(UIScrollView *)scrollView {
return dot;
}
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(CGFloat)scale{
NSLog(@"zoomed");
NSLog(@"%f",scale);
[self setTheView:image andFrameW:&theW andFrameH:&theH andTheScale:&scale];
}
问题:我这里有两个问题:
1- 缩放比例不是从它到达的最后一点开始的。
2- 在开始缩放之前点击缩放移动。
更新编辑
两个问题都解决了
我没有在缩放后再次调用该方法,而是更改了内容大小
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(CGFloat)scale{
[self setTheView:image andFrameW:&theW andFrameH:&theH andTheScale:&scale];
}
替换为
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(CGFloat)scale{
scrollView.contentSize = CGSizeMake((dot.bounds.size.width*scale)*2,(dot.bounds.size.height*scale)*2);
}
但是我有新的问题出现了,缩放之后 contentOffSet 上下不相等而且还左写
图解说明:
<----------------------------Content Size---------------------------->
| left offset |<---------Scrollviewframe--------->|Right offset|
我尝试设置新的内容偏移量:
[scrollView setContentOffset:CGPointMake((dot.bounds.size.width*scale)/2,(dot.bounds.size.height*scale)/2) animated:NO];
但什么也没做..
最佳答案
问题解决了,如果有人想使用 scrollview 来裁剪和缩放,而 allowsEditing = YES;
没有设置矩形大小的能力,我想分享答案
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(CGFloat)scale{
CGFloat zoomedW = dot.bounds.size.width*scale;
CGFloat zoomedH = dot.bounds.size.height*scale;
CGFloat frameW = scrollView.frame.size.width;
CGFloat frameH = scrollView.frame.size.height;
scrollView.contentSize = CGSizeMake(frameW+zoomedW ,frameH+zoomedH);
}
关于ios - 缩放用于在 IOS 中调整和裁剪图像的 uiscrollview 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22795350/
抱歉这个奇怪的标题,但是,这正是我所需要的。我知道这是可以做到的,因为我见过其他应用程序这样做。 基本上,我的应用程序有一个启用分页的大 ScrollView ,其中包含一些嵌套的 ScrollVie
我还没有尝试过,但我假设一旦我知道用户想要在子 ScrollView 中滚动,我就必须禁用父 ScrollView 的滚动,对吗? 两个 ScrollView 都是水平滚动的。 如何暂时禁用父级的滚动
我需要实现这个方法: - (CGRect)zoomRectForScale:(float)scale withCenter:(CGPoint)center { 但我不知道如何获得我需要的中心坐标。通常
我想根据 UIAccelerometer 值滚动 ScrollView 。实现这一目标的最佳方法是什么? 最初,我根据获得的加速度计值将内容偏移设置为一个值。然后在每个 scrollViewDidEn
我有一个 UIScrollView,我需要底部淡入透明,这样它就不会突然切断内容。 UIScrollView 的背景是自定义颜色。这是我到目前为止所拥有的,但图层显示为白色,而不是自定义颜色。这就是我
我有一个 UIScrollviews 彼此存在的层次结构。 如何将特定区域的滑动事件重定向到内部 ScrollView ? 最佳答案 如果您将 UIScrollViews 设置为只能在一个轴或另一轴上
在我的应用程序中,我有一个扩展 UIScrollView 并在用户滚动时填充其内容的 View 。但是,如果用户滚动太快,则 UIScrollView 内填充的 View 不会及时创建,您实际上可以看
我有一个包含内容的 UIScroll View 。如果该内容溢出,使 ScrollView 可滚动,我想将 View 的底部设置为某种颜色。如果没有,我想将其设置为不同的颜色。 我的问题是,我不知道如
我有一个 ScrollView ,其中包含一个 UIImageView,以及一个额外的 UIScrollView 和 UIImageView。 我想要实现的是独立缩放和平移每个 ScrollView
类似的问题也有人问过这个,但我的困境其实和他们正好相反。我有一个全屏、分页 UIScrollView,每个页面都是屏幕的大小。在其中,我有一些页面本身就是 UIScrollViews,它们的宽度大于屏
我有一个 UIScrollView 和另一个 UIScrollView 。它们都水平滚动并且具有 pagingEnabled = YES。假设我开始滚动内部 ScrollView 并到达最右边界。如果
我有一个 UIScrollView,里面有一个(自定义)UIView。 在我的 scrollViewDidScroll 方法中,我正在调用 [myCustomView setNeedsDisplay]
我有一个水平滚动的 UICollectionView,其中填充了垂直滚动的 UITableViews(两者都是 UISCrollView 的子类)。当滚动手势开始沿任一方向滚动时,在其减速完成之前不会
iOS 8, swift 。我试图在水平 ScrollView 上创建垂直 ScrollView 。它们都是 UIScrollView。垂直 ScrollView 允许从底部向上滑动 View 。顶部
我需要一个分页的 UIScrollView,它以 UIScreenEdgePanGestureRecognizer 的方式检测屏幕边缘的平移,而不是像 UIPanGestureRecognizer 那
假设我有多个 ScrollView ,并且我希望在任何给定时间只打开其中一个 (scrollView.contentOffset != 0)。因此,当 scroll view 1 打开且 scroll
我在分页 UIScrollView(外部)中的 VC 中有 UIScrollView(内部 - UICollectionView 是诚实的)。两者都是水平的。当我向内滚动到边缘(左侧或右侧)时,它开始
如何在不干扰现有 UIScrollView 的情况下从现有 UIScrollView 获取重复的 UIScrollView。 第一个 ScrollView , UIScrollView *firstS
我的应用程序中有一个点,我删除了一个 ScrollView 并添加了另一个。我希望新 ScrollView 中也能出现上一个 ScrollView 中的相同手势。我尝试过: s
请告诉我如何在类似嵌套进程的 ScrollView 中设置 ScrollView 。 以下代码部分有效。 int x=10; int y=10; for(int i=0; i<5; i++) {
我是一名优秀的程序员,十分优秀!