Reading another board, someone said UIImageViews could only be moved thru the .frame prop. So after doing the same transform as above and storing the virtual pos, I tried this...
Code:
UIImageView * gView ;
- ( void ) touchesEnded : (NSSet*) touches withEvent : (UIEvent*) event
{
CGRect r = [[UIScreen mainScreen] bounds ] ;
gView.frame = CGRectMake(0, 0, r.size.width / 3, r.size.width - 25) ;
}
The image view disappears.