我正在尝试平移和放大图像。由于 C4 中还没有平移手势,我想我可以在开始时使用滑块。所以我将平移手势添加到照片中,如下所示:
-(void)photoToCrop{
photoTaken=[C4Image imageNamed:@"image.jpg"];
photoTaken.height=self.canvas.height;
photoTaken.origin=CGPointMake(0, 0);
[self.canvas addImage:photoTaken];
[self addGesture:PAN name:@"pan" action:@"movePhoto:"];
}
-(void)movePhoto:(UIPanGestureRecognizer *)recognizer {
CGPoint thePoint=[recognizer locationInView:self.view];
//C4Log(@"current position:%f,%f",thePoint.x, thePoint.y);
if (thePoint.x>photoTaken.origin.x &&thePoint.x<photoTaken.origin.x+photoTaken.width && thePoint.y>photoTaken.origin.y &&thePoint.y<photoTaken.origin.y+photoTaken.height) {
C4Log(@"touched inside+moved");
[photoTaken move:recognizer];
}
}
我只在用户实际点击图像而不是外面的任何地方时才使用平移手势(那是那里的 if 语句)它本身就可以很好地工作。然后我还有一个滑块,用于缩放相同的图像:
-(void)sliderSetup{
[self createAddSliderObjects];
zoomSlider.minimumValue=0.52f;
zoomSlider.maximumValue=10.0f;
//scalefactor=1;
zoomSlider.value=1.0f;
}
-(void)createAddSliderObjects{
sliderLabel=[C4Label labelWithText:@"1.0"];
sliderLabel.textColor=navBarColor;
zoomSlider=[C4Slider slider:CGRectMake(0, 0, self.canvas.width-20, 20)];
//positioning
sliderLabel.center=CGPointMake(self.canvas.width/2,self.canvas.height-NavBarHeight-50);
zoomSlider.center=CGPointMake(sliderLabel.center.x,sliderLabel.center.y+10);
//set up action
[zoomSlider runMethod:@"sliderWasUpdated:"
target:self
forEvent:VALUECHANGED];
[self.canvas addObjects:@[sliderLabel, zoomSlider]];
}
-(void)sliderWasUpdated:(C4Slider*)theSlider{
//update the label to reflect current scale factor
sliderLabel.text=[NSString stringWithFormat:@"%4.2f", theSlider.value];
[sliderLabel sizeToFit];
//scale the image
C4Log(@"slider:%f",theSlider.value);
photoTaken.height=self.canvas.height*theSlider.value;
photoTaken.center=self.canvas.center;
}
它本身也可以正常工作。但是试图同时使用两者是行不通的。在这种情况下,只有平移图像有效,但滑块不会发生任何事情。似乎它没有得到任何触发器......有人建议我还能尝试什么吗?