Quote:
[self.view addSubview:touchedPointImageView];
|
Are you sure you are removing touchedPointImageView from its superview after animation?
for eg:
Code:
[touchedPointImageView removeFromSuperview];
Although there is no leak in your code snippet, if you do not remove the imageview from superview, you would end up creating a pool of imageviews which is released only when your self.view releases.
The better approach to this problem is to create the imageview once, and then play with its alpha and hidden property to hide and show the imageview.
Hope this Helps