It was a different question, but what I thought was wrong was wrong, so I adjusted the title to reflect what I really understood.
I am working on an animation that takes a copy of the image in cell.imageView of a regular UITableViewCell and moves it to the tab bar at the bottom of the screen to simulate putting an item in the trash. I can copy the image and place the copy as a subspecies of the window, but I cannot figure out how to get the absolute position of the original image, so I can place it on top as the starting point of my animation.
The image is always displayed at the top of the screen, as if it were placed at 0.0.
Sorry for the noobic nature of the question, I'm sure I missed something very obvious.
- (Invalid) Tableview: (UITableView *) tableView accessoriesButtonTappedForRowWithIndexPath: (NSIndexPath *) indexPath {
UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
UIImageView *originalImgView = cell.imageView;
UIImageView *img = [[[UIImageView alloc] initWithImage: cell.imageView.image] autorelease];
NSLog(@"Original %@", originalImgView.bounds);
NSLog(@"Window Points %@", [self.view.window convertPoint:originalImgView.frame.origin toView:nil]);
NSLog(@"Cell Points: %@", cell.bounds);
[img setFrame:CGRectMake( originalImgView.bounds.origin.x, originalImgView.bounds.origin.y ,
cell.imageView.image.size.width, cell.imageView.image.size.height)];
[self.view.window addSubview:img];
NSLog(@"Selected Cell: %@", cell);
}
source
share