HI all,
is there any way round,in which we can reload UIView,like we do in table view, reloadtable?
is it possible?
regards shishir
HI all,
is there any way round,in which we can reload UIView,like we do in table view, reloadtable?
is it possible?
regards shishir
Call -setNeedsDisplay
.
[myView setNeedsDisplay]; // will cause the view to redraw itself on the next draw cycle.