Is it possible to redraw the whole view.
I need it to complete my language settings. The problem is that the language only changes after the views there drawn again
Just call setNeedsDisplay.. It will resolve the problem. setNeedsDisplay actually calls the drawRect function in the UIView class by passing the frame of the view as the rectangular parameter. Hope that helps....