1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| //
| // PersonalDataVC.swift
| // BrokerDriver
| //
| // Created by 无故事王国 on 2023/4/25.
| //
|
| import UIKit
|
| class PersonalDataVC: BaseViewController {
|
| override func viewDidLoad() {
| super.viewDidLoad()
| title = "Personal data"
| }
|
|
| }
|
|