/*XXXViewController.h*/
// 枚舉的創(chuàng)建
typedef NS_ENUM(NSInteger, lastVC) {
OTHERVC, // 其他界面
HOMEVC // 首頁進來
};
@property (nonatomic,assign)lastVC lastVc;
// 枚舉的使用
XXXViewController * xx = [[XXXViewController alloc]init];
xx.lastVC = HOMEVC;
[self.navigationController pushViewController: xx animated:YES];
/*XXXViewController.m*/
if (_lastVc == HOMEVC) {
[self dismissViewControllerAnimated:YES completion:^{
}];
}else{
[self.navigationController popViewControllerAnimated:YES];
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者