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

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex