I am programing under cocoatouch, using x-code.
I add lots UIImageViews in a ViewDidLoad function by [self.view addSubview:test];
.
and if the information on web is changed, the UIImageViews on the UI should be replaced by other ones(remove the original ones and add new ones). is there any typical way to do it?
How to redraw the view? how to remove the UIImageViews that is already loaded by addSubView Method.
Many thanks!