UITouch *touch = [touches anyObject];
CGPoint coord = [touch locationInView:self.view];
//if touches within image, access photo library
if (CGRectContainsPoint(imgView.frame, coord)) {
[self presentModalViewController:self.imgPickerCtrller animated:YES];
}
CGPoint coord = [touch locationInView:self.view];
//if touches within image, access photo library
if (CGRectContainsPoint(imgView.frame, coord)) {
[self presentModalViewController:self.imgPickerCtrller animated:YES];
}