Hi,
When I change the frame for one of my subviews, the subview shows up at the new frame, but also the old one. I really want to move it, not copy it. Removing it from its superview, changing it, then adding it back doesn't work either. Any suggestions?
Code:
[imageview removeFromSuperview];
imageview.frame = CGRectMake(150, 150, 59, 40);
[self addSubview:imageview];
thanks!