| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // MyViewController.m
- // iShop
- //
- // Created by Rui Zhang on 12/14/23.
- //
- #import "MyViewController.h"
- @interface MyViewController ()
- @end
- @implementation MyViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
-
- // Do any additional setup after loading the view.
- }
- - (void)viewWillAppear:(BOOL)animated
- {
- [super viewWillAppear:animated];
- [[self navigationController] setNavigationBarHidden:NO animated:NO];
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|