can we Reload UIView?
HI all,
is there any way round,in which we can reload UIView,like we do in table view, reloadtable?
开发者_C百科is it possible?
regards shishir
Call -setNeedsDisplay
.
[myView setNeedsDisplay]; // will cause the view to redraw itself on the next draw cycle.
精彩评论