0

我正在做一个必须显示一个图像的项目,当我单击图像时,一个“白色视图”将出现在图像的上侧。当我双击“两个大头针”时,会出现在“白色视图”上。当我拉这两个引脚时,白色视图的宽度和高度会增加和减少。

我无法做到这一点。

来自专家的任何想法都将受到高度欢迎。

Second_View.h file

#import <UIKit/UIKit.h>

@interface Second_View : UIViewController<UIGestureRecognizerDelegate>{


UITapGestureRecognizer *tap;
UISwipeGestureRecognizer *swipe;
UIPanGestureRecognizer *pan;
CGPoint startLocation;
CGFloat lastScale;
CGFloat firstX;
CGFloat firstY;
CGPoint lastLocation;


UIImageView *imageVw;
}


@property (nonatomic)  CGPoint center;

@property (nonatomic)  NSInteger count;

@property(nonatomic,retain) UIImageView *imageVw;


@end


Second_View.m file
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor grayColor];

imageVw = [[UIImageView alloc]initWithFrame:CGRectMake(200, 200, 500, 400)];
imageVw.image = [UIImage imageNamed:@"redacted2.jpg"];
imageVw.userInteractionEnabled=YES;
imageVw.autoresizesSubviews = YES;
imageVw.alpha = 0.93;  // for opacity
[self.view addSubview:imageVw];




tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
tap.numberOfTapsRequired = 1;
[imageVw addGestureRecognizer:tap];
tap.delegate=self;
pan=[[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panAction:)];
[pan setMinimumNumberOfTouches:1];
[pan setMaximumNumberOfTouches:2];
[pan setDelegate:self];
count=0;
[imageVw addGestureRecognizer:pan];



}


- (void)panAction:(UIPanGestureRecognizer *)gestureRecognizer {
CGPoint translatedPoint = [(UIPanGestureRecognizer*)gestureRecognizer        translationInView:self.view];

if ([(UIPanGestureRecognizer*)gestureRecognizer state] ==     UIGestureRecognizerStateBegan) {
firstX = [[gestureRecognizer view] center].x;
firstY = [[gestureRecognizer view] center].y;
}


translatedPoint = CGPointMake(firstX+translatedPoint.x, firstY+translatedPoint.y);

[[gestureRecognizer view] setCenter:translatedPoint];

if ([(UIPanGestureRecognizer*)gestureRecognizer state] ==   UIGestureRecognizerStateEnded) {
CGFloat velocityX = (0.2*[(UIPanGestureRecognizer*)gestureRecognizer     velocityInView:self.view].x);


CGFloat finalX = translatedPoint.x + velocityX;
CGFloat finalY = firstY;// translatedPoint.y + (.35*[(UIPanGestureRecognizer*)sender    velocityInView:self.view].y);

if (UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
if (finalX < 0) {
//finalX = 0;
} else if (finalX > 768) {
//finalX = 768;
}

if (finalY < 0) {
finalY = 0;
} else if (finalY > 1024) {
finalY = 1024;
}
} else {
if (finalX < 0) {
//finalX = 0;
} else if (finalX > 1024) {
//finalX = 768;
}

if (finalY < 0) {
finalY = 0;
} else if (finalY > 768) {
finalY = 1024;
}
}
}
}




-(void)handleTap:(UIPanGestureRecognizer *)gestureRecognizer
{

CGPoint location = [gestureRecognizer locationInView:gestureRecognizer.view];
NSLog(@"x:%f y:%f",location.x,location.y);


NSArray *subViewsOfImage = [imageVw subviews];


for (id subView in subViewsOfImage) {
CGRect frame1=[subView frame];
int x=0;
int y=0;
x=frame1.origin.x+frame1.size.width;
y=frame1.origin.y+frame1.size.height;

if ((location.x>=frame1.origin.x && location.x<x) && (location.y>=frame1.origin.y &&   location.y<y) )
{
NSLog(@"No");
return;
}
}


derivedView *view=[[derivedView alloc]initWithFrame:CGRectMake(location.x, location.y, 100, 30)];
[view setBackgroundColor:[UIColor whiteColor]];
[imageVw addSubview: view];
NSArray * subViewsOfImage1 = [imageVw subviews];
NSLog(@"subViewsOfImage = %@",subViewsOfImage1);
NSLog(@"Yes");

}

派生视图.h 文件

#import <UIKit/UIKit.h>

@interface derivedView : UIView<UIGestureRecognizerDelegate>
{
UIPanGestureRecognizer *pan;
UITapGestureRecognizer *tap1;
UITapGestureRecognizer *tap2;
UITapGestureRecognizer *tap3;
CGPoint lastLocation;
CGFloat firstX;
CGFloat firstY;
UIImageView *rPinImgView;
UIImageView *lPinImgView;

}

@end

派生视图.m 文件

- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];

if (self) {
// Initialization code
pan=[[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panAction:)];
[pan setDelegate:self];
[self addGestureRecognizer:pan];
tap1=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapAction:)];
[tap1 setDelegate:self];
[self addGestureRecognizer:tap1];

}
return self;
}



- (void)tapAction:(UITapGestureRecognizer *)gestureRecognizer {


//       lPinImgView=[[UIImageView alloc]initWithFrame:CGRectMake(-15,-20, 30, 30)];
//    lPinImgView.image=[UIImage imageNamed:@"pin"];
//    // pin.frame=CGRectMake(frame1.origin.x, frame1.origin.y-15, 10, 10);
//    
//    rPinImgView=[[UIImageView alloc]initWithFrame:CGRectMake      (self.frame.size.width-15 ,23, 30, 30)];
//    //pin1.frame=CGRectMake(frame1.origin.x+frame1.size.width, frame1.origin.y+5, 10, 10);
//    rPinImgView.image=[UIImage imageNamed:@"pin1"];
//    [self addSubview:lPinImgView];
//    [self addSubview:rPinImgView];
NSArray *subViews=[self subviews];
NSLog(@"subViews%@",subViews);
if ([subViews count]>0) {
[lPinImgView removeFromSuperview];
[rPinImgView removeFromSuperview];
}else
{
lPinImgView=[[UIImageView alloc]initWithFrame:CGRectMake(-15,-20, 30, 30)];
lPinImgView.image=[UIImage imageNamed:@"pin"];
// pin.frame=CGRectMake(frame1.origin.x, frame1.origin.y-15, 10, 10);

rPinImgView=[[UIImageView alloc]initWithFrame:CGRectMake(self.frame.size.width-15 ,23, 30, 30)];
//pin1.frame=CGRectMake(frame1.origin.x+frame1.size.width, frame1.origin.y+5, 10, 10);
rPinImgView.image=[UIImage imageNamed:@"pin1"];
tap2=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector (rPinImageTap:)];
[rPinImgView addGestureRecognizer:tap2];
[tap2 setDelegate:self];
tap3=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(lPinImageTap:)];
[rPinImgView addGestureRecognizer:tap3];
[tap3 setDelegate:self];
[self addSubview:lPinImgView];
[self addSubview:rPinImgView];

}


- (void)lPinImageTap:(UIPanGestureRecognizer *)gestureRecognizer
{

}
- (void)rPinImageTap:(UIPanGestureRecognizer *)gestureRecognizer
{

}
- (void)panAction:(UIPanGestureRecognizer *)gestureRecognizer {

CGPoint translatedPoint = [(UIPanGestureRecognizer*)gestureRecognizer   translationInView:self];

if ([(UIPanGestureRecognizer*)gestureRecognizer state] ==     UIGestureRecognizerStateBegan) {
firstX = [[gestureRecognizer view] center].x;
firstY = [[gestureRecognizer view] center].y;
}

//  translatedPoint = CGPointMake(firstX+translatedPoint.x, firstY);
translatedPoint = CGPointMake(firstX+translatedPoint.x, firstY+translatedPoint.y);

[[gestureRecognizer view] setCenter:translatedPoint];

if ([(UIPanGestureRecognizer*)gestureRecognizer state] ==   UIGestureRecognizerStateEnded) {
CGFloat velocityX = (0.2*[(UIPanGestureRecognizer*)gestureRecognizer   velocityInView:self].x);


CGFloat finalX = translatedPoint.x + velocityX;
CGFloat finalY = firstY;// translatedPoint.y + (.35*[(UIPanGestureRecognizer*)sender velocityInView:self.view].y);

if (UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation])) {
if (finalX < 0) {
//finalX = 0;
} else if (finalX > 768) {
//finalX = 768;
}

if (finalY < 0) {
finalY = 0;
} else if (finalY > 1024) {
finalY = 1024;
}
} else {
if (finalX < 0) {
//finalX = 0;
} else if (finalX > 1024) {
//finalX = 768;
}

if (finalY < 0) {
finalY = 0;
} else if (finalY > 768) {
finalY = 1024;
}
}
}
}

}

4

1 回答 1

1

查看下面的链接并下载项目并检查:

https://github.com/spoletto/SPUserResizableView

于 2013-04-05T09:10:08.313 回答