Note that there are some explanatory texts on larger screens.

plurals
  1. POUIView Animation for ImageView in ios
    primarykey
    data
    text
    <p>i Have requirement were i have to animate image view from current position to full screen in grid view. i made images into Grid view.</p> <pre><code>- (void)viewDidLoad { [super viewDidLoad]; imagesArray = [[NSMutableArray alloc] init]; for (int i=1; i&lt;11; i++) { [imagesArray addObject:[UIImage imageNamed:[NSString stringWithFormat:@"image%d.png", i]]]; NSLog(@"imagesArray:%@", imagesArray); } float horizontal = 20.0; float vertical = 20.0; for(int i=0; i&lt;[imagesArray count]; i++) { if((i%3) == 0 &amp;&amp; i!=0) { horizontal = 20.0; vertical = vertical + 220.00 + 20.0; } imagesView = [[UIImageView alloc] initWithFrame:CGRectMake(horizontal, vertical, 310.0, 220.00)]; imagesView.userInteractionEnabled = YES; [imagesView setImage:[imagesArray objectAtIndex:i]]; imagesView.tag = i; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)]; tap.numberOfTapsRequired = 1; tap.numberOfTouchesRequired = 1; [imagesView addGestureRecognizer:tap]; [self.view addSubview:imagesView]; horizontal = horizontal + 310.0 + 20.0; } } </code></pre> <p>here i have created grid view with images, like i have 10 images. i made 3x3 grid view.</p> <p>next i have add tap gesture to it and i am getting the image view position by calling with tag</p> <pre><code>-(void)handleTap:(UITapGestureRecognizer *)recognizer { UIView *piece = recognizer.view; [UIView animateWithDuration:1.0 animations:^{ piece.frame = CGRectMake(piece.frame.origin.x, piece.frame.origin.y, 1000, 700); } completion:^(BOOL finished) { }]; } </code></pre> <p>Can you say me how to make image view animate from current position to full screen by tapping on it. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload