Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have one code which moves the uiimage on touch-event

it's like this:

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch=[[event allTouches]anyObject];
touchOffset= image.center.x-[touch locationInView:touch.view].x;
}


-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch=[[event allTouches]anyObject];
//paddle movemant coordinates
float distanceMoved=([touch locationInView:touch.view].x+touchOffset)- image.center.x;
float newX= image.center.x+distanceMoved;
if(newX>30 &&newX<290)
image.center=CGPointMake(newX, image.center.y);
if(newX>290)
image.center=CGPointMake(290, image.center.y);
if(newX<30)
image.center=CGPointMake(30,  image.center.y);
}

BUT the problem is that I want this action must be perform on button(left-right button)action.When ever I pressed the left button UIImage move little bit to left side. And When ever I pressed the Right button UIImage move little bit to right side basically I want image movement controller with button only on x axis of iphone or pad.

thanks in advance

share|improve this question
I'm a bit confused. You have UIImages that you have detecting touches and you're using these images as buttons, right? Why not use UIButtons and you embed the images in the button? This way, whenever the button gets clicked, you can intercept the button instance that performed the click. – mj_ Sep 6 '10 at 2:41
didn't get you dear.help me friend – Rocky Sep 7 '10 at 14:05

2 Answers

up vote 0 down vote accepted

CGRect frame = [image frame]; frame.origin.x += 10.0f; [image setFrame:frame]; use this & map your buton actions with it .

share|improve this answer
CGRect frame = [image frame];
frame.origin.x += 10.0f;
[image setFrame:frame];
share|improve this answer
how can I use this – Rocky Sep 21 '10 at 10:58
it work but i want to move object left to right & right to left with help joypad in game. – Rocky Oct 4 '10 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.