12345678910111213141516171819202122232425262728 |
- //
- // RQAboutUsHeaderView.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/9/16.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQAboutUsHeaderView.h"
- @interface RQAboutUsHeaderView ()
- /// versionLabel
- @property (weak, nonatomic) IBOutlet UILabel *versionLabel;
- @end
- @implementation RQAboutUsHeaderView
- - (void)awakeFromNib{
- [super awakeFromNib];
-
- /// 版本
- self.versionLabel.text = [NSString stringWithFormat:@"极速驾培 %@" , RQ_APP_VERSION];
-
- }
- @end
|