|
- //
- // PaymentViewController.m
- // goodpk
- //
- // Created by 歐特儀 on 2020/2/11.
- // Copyright © 2020 Altob. All rights reserved.
- //
-
- #import "PaymentViewController.h"
-
- @interface PaymentViewController ()
-
- @end
-
- @implementation PaymentViewController
-
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- self.title = @"付款";
-
- }
-
- /*
- #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
|