| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // AboutUsViewController.m
- // StudentDaya
- //
- // Created by Kyle on 2019/8/28.
- // Copyright © 2019 DayaMusic. All rights reserved.
- //
- #import "AboutUsViewController.h"
- #import "AboutBodyView.h"
- @interface AboutUsViewController ()
- @property (nonatomic, strong) AboutBodyView *bodyView;
- @end
- @implementation AboutUsViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- [self allocTitle:@"关于我们"];
- [self configUI];
- }
- - (void)configUI {
- _bodyView = [AboutBodyView shareInstance];
- _bodyView.frame = CGRectMake(0, 0, kScreenWidth, kScreenHeight - kNaviBarHeight - iPhoneXSafeBottomMargin);
- [self.scrollView addSubview:_bodyView];
- }
- /*
- #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
|