| 311 | | - (void) wasPushed |
|---|
| 312 | | { |
|---|
| 313 | | // We've just been put on screen, the user can see this controller's content now |
|---|
| 314 | | |
|---|
| 315 | | // always call super |
|---|
| 316 | | [super wasPushed]; |
|---|
| 317 | | } |
|---|
| 318 | | |
|---|
| 319 | | - (void) wasPopped |
|---|
| 320 | | { |
|---|
| 321 | | // The user pressed Menu, removing us from the screen |
|---|
| 322 | | |
|---|
| 323 | | // always call super |
|---|
| 324 | | [super wasPopped]; |
|---|
| 325 | | } |
|---|
| 326 | | |
|---|
| 327 | | - (void) wasBuriedByPushingController: (BRLayerController *) controller |
|---|
| 328 | | { |
|---|
| 329 | | // The user chose an option and this controller is no longer on screen |
|---|
| 330 | | |
|---|
| 331 | | // always call super |
|---|
| 332 | | [super wasBuriedByPushingController: controller]; |
|---|
| 333 | | } |
|---|
| 334 | | |
|---|
| 335 | | - (void) wasExhumedByPoppingController: (BRLayerController *) controller |
|---|
| 336 | | { |
|---|
| 337 | | // handle being revealed when the user presses Menu |
|---|
| 338 | | |
|---|
| 339 | | // always call super |
|---|
| 340 | | [super wasExhumedByPoppingController: controller]; |
|---|
| 341 | | } |
|---|
| 342 | | |
|---|