| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // GWJJViewController.m
- // jitao
- //
- // Created by 罗云飞 on 2018/8/19.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import "GWJJViewController.h"
- @interface GWJJViewController ()
- @end
- @implementation GWJJViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.view.backgroundColor = NewWhiteColor;
- UILabel *title = [UILabel new];
- title.font = NewFont(13);
- title.text = self.neirong;
- title.textColor = [UIColor colorWithString:@"#6C6C6C"];
- [self.view addSubview:title];
-
- title.sd_layout
- .leftSpaceToView(self.view, 15)
- .rightSpaceToView(self.view, 15)
- .autoHeightRatio(0)
- .topSpaceToView(self.view, 15);
- // Do any additional setup after loading the view.
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #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
|