Skip to main content

How to detect particular UIImageView for UITouch Events



I've added 5 UIImageView dynamically and filled it with different images, what I am trying to do is "Allow user to set position for any UIImageView", for that I used







-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

//Here I want the object of particular UIImageView on which user touched.

}



NSLog(@"%@",[touches anyObject]); //It returns output like below,



/*<UITouch: 0x68b95e0> phase: Began tap count: 1 window: <UIWindow: 0x68875d0; frame = (0 0; 320 480); layer = <UIWindowLayer: 0x68b6470>> view: <UIImageView: 0x6a74cf0; frame = (83.7763 83.7763; 182.447 182.447); transform = [0.968912, -0.247404, 0.247404, 0.968912, 0, 0]; alpha = 0.8; opaque = NO; tag = 3; layer = <CALayer: 0x6a74980>> location in window: {161, 230} previous location in window: {161, 230} location in view: {52.7761, 105.448} previous location in view: {52.7761, 105.448}*/



//Note, in above output, it showing my UIImageView object on which I touched. But I want that object from it!!!







I want my UIImageView on which user touched?, I have already set property userInteractionEnabled=YES so the problem isn't with it!





I used below code to get it so, but it wont work...







NSInteger tag=[[[touches anyObject] view] tag]; //It only returns tag of my UIView tag







I google it but doesn't come with solution!





Thank you in advance for any help !


Comments

  1. Here you go:

    this is only for one imageview you can detect the other by the same if statement.

    -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
    UITouch *touch = [touches anyObject];
    CGPoint touch_point = [touch locationInView:self.view];

    if (![imageView pointInside:touch_point withEvent:event])
    {
    NSLog(@"point inside imageview");
    }
    }


    or you can also do this :p

    -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
    {
    UITouch *touch = [touches anyObject];

    if (touch.view == iv)
    {
    NSLog(@"i got you");
    }
    }


    like this: (iv and iv2 are 2 different UIImageView`s)

    if (touch.view == iv)
    {
    NSLog(@"i got you");
    }

    if (touch.view == iv2)
    {
    NSLog(@"i got you too :p");
    }

    ReplyDelete
  2. You can use UIButton with Image properties instead of UIImageView.

    If you would like to call your own function ,It's pretty easy to handle many event like Touch up inside or Touch Cancel by adding selector.

    UIButton *yourBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    /* Depend on your dynamic programming handle */
    yourBtn.frame = CGRectMake(40, 140, 240, 30);

    /* If you prefer just only image ,no need to set Title name */
    [yourBtn setTitle:@"Your Button Title" forState:UIControlStateNormal];

    /* choose yourFunction for each UIButton */
    [yourBtn addTarget:self action:@selector(yourFunction) forControlEvents:UIControlEventTouchUpInside];

    /* your button will be appear in the position that you have define */
    [self.view addSubview:yourBtn];


    Hope It helps you!

    ReplyDelete
  3. 1 Subclass UIImageView and implement:


    Responding to Touch Events

    – touchesBegan:withEvent:
    – touchesMoved:withEvent:
    – touchesEnded:withEvent:
    – touchesCancelled:withEvent:


    Responding to Motion Events

    – motionBegan:withEvent:
    – motionEnded:withEvent:
    – motionCancelled:withEvent:



    or:

    2 Add UIGestureRecognizer to each UIImageView.

    ReplyDelete
  4. You could add the View that you add into an NSMutableArray and then just compare like this:

    I am not in my mac, but It's something similar to this:

    NSInteger viewID = [_views indexOfObject:[[touches anyObject] view]];


    This return and number if not isn't exist do this:

    if (viewID != NSNotFound) {
    //it exist the view and its in the array
    }

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 3 Final Exam => latest version

1 . Which security protocol or measure would provide the greatest protection for a wireless LAN? WPA2 cloaking SSIDs shared WEP key MAC address filtering   2 . Refer to the exhibit. All trunk links are operational and all VLANs are allowed on all trunk links. An ARP request is sent by computer 5. Which device or devices will receive this message? only computer 4 computer 3 and RTR-A computer 4 and RTR-A computer 1, computer 2, computer 4, and RTR-A computer 1, computer 2, computer 3, computer 4, and RTR-A all of the computers and the router   3 . Refer to the exhibit. Hosts A and B, connected to hub HB1, attempt to transmit a frame at the same time but a collision occurs. Which hosts will receive the collision jamming signal? only hosts A and B only hosts A, B, and C only hosts A, B, C, and D only hosts A, B, C, and E   4 . Refer to the exhibit. Router RA receives a packet with a source address of 192.168.1.65 and a destination address of 192.168.1.161...