Get back to the first screen of my iPhone app after transitioning through five screens

后端 未结 3 1908
一生所求
一生所求 2020-12-22 03:58

I\'m using multiple screens in my app. I wrote code for the moving from the first screen to the second screen, the second screen to the third screen, and so on up to the fif

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-22 04:30

    [self.navigationController popToRootViewControllerAnimated:YES];

    [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:0] animated:YES];

    You can use second line code then verify the index of view controller.

    and you have memory problem so please verify the any object release or not.

提交回复
热议问题