How to change view on button click in iPhone without navigation controller?

后端 未结 5 1731
小蘑菇
小蘑菇 2021-01-03 11:54

I want to know how to change view on button click in iPhone without navigation controller?

5条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-03 12:24

    Place this in Button IBAction method

    [mCurrentView removeFromSuperview];
    [self.view addSubView:mNewView];

提交回复
热议问题