Commit a2586fdd authored by 陈俊俊's avatar 陈俊俊

先屏蔽报表

parent 6b7ac285
...@@ -29,7 +29,17 @@ ...@@ -29,7 +29,17 @@
- (void)viewDidLoad { - (void)viewDidLoad {
[super viewDidLoad]; [super viewDidLoad];
//布局 //布局
#if 0
[self bulidLayout]; [self bulidLayout];
#else
CGRect rect = CGRectMake(0, 200, self.view.width, 30);
IBTUILabel *lbl = [[IBTUILabel alloc]initWithFrame:rect];
lbl.text = @"哎呦,功能还没实现呢,下次再来看看吧。";
lbl.textAlignment = NSTextAlignmentCenter;
lbl.font = [UIFont systemFontOfSize:15];
lbl.textColor = GXF_NAVIGAYION_COLOR;
[self.view addSubview:lbl];
#endif
} }
#pragma mark - 布局 #pragma mark - 布局
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment