i have a tababr with 4 views (View 1,2,3,4). When my app enters into foreground i need to update the UI in the 4th View . so i registered for UIAPPLICATIONWILLENTERFOREGROUND notification . and my -(void)updateUI method getting called every time when app enters into foreground. my DOUBT is .when app comes to foreground at view 1 and if i am trying to update the UI in 4 th view with foreGroundNotification . will the application crash at any scenario ??? .
and where do i need to remove the observer ???
(as for as i know View's will be in the stack and app wont get crashed even we are trying to update from some other view .)