1. 程式人生 > >導航跳轉push操作

導航跳轉push操作

/**
 *  收款紀錄點擊事件
 */
-(void)paymentRecordClick{
    PANPaymentRecordViewController*paymentRecordVC = [[PANPaymentRecordViewController alloc] init];
    //push後隱藏底部taBar
    paymentRecordVC.hidesBottomBarWhenPushed = YES;
    [self.navigationController pushViewController:paymentRecordVC animated:YES ];
}