| 430 | } |
| 431 | |
| 432 | void CANavigationController::viewDidUnload() |
| 433 | { |
| 434 | for (CADeque<CAViewController*>::iterator itr=m_pViewControllers.begin(); |
| 435 | itr!=m_pViewControllers.end(); |
| 436 | itr++) |
| 437 | { |
| 438 | (*itr)->removeViewFromSuperview(); |
| 439 | } |
| 440 | |
| 441 | for (CADeque<CAView*>::iterator itr=m_pContainers.begin(); |
| 442 | itr!=m_pContainers.end(); |
| 443 | itr++) |
| 444 | { |
| 445 | (*itr)->removeAllSubviews(); |
| 446 | (*itr)->removeFromSuperview(); |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | void CANavigationController::viewDidAppear() |
| 451 | { |
no test coverage detected