12345678910111213141516171819202122232425262728 |
- //
- // RQProfileViewController.m
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/21.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQProfileViewController.h"
- @interface RQProfileViewController ()
- /// viewModel
- @property (nonatomic, readonly, strong) RQProfileViewModel *viewModel;
- @end
- @implementation RQProfileViewController
- @dynamic viewModel;
- #pragma mark - SystemMethod
- - (void)viewDidLoad {
-
- [super viewDidLoad];
-
-
- }
- @end
|