diff --git a/iOS/DoraemonKit/Src/Core/Plugin/Platform/Mock/DoraemonMockViewController.m b/iOS/DoraemonKit/Src/Core/Plugin/Platform/Mock/DoraemonMockViewController.m index 221170653ca1730d07c1a5ab400651a4fe91b635..2202cc8990882b9aa50c3d0c8838be75dedeb608 100644 --- a/iOS/DoraemonKit/Src/Core/Plugin/Platform/Mock/DoraemonMockViewController.m +++ b/iOS/DoraemonKit/Src/Core/Plugin/Platform/Mock/DoraemonMockViewController.m @@ -22,6 +22,13 @@ - (void)viewDidLoad { [super viewDidLoad]; + UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, DoraemonScreenHeight/2-100/2, DoraemonScreenWidth, 100)]; + titleLabel.text = @"正在请求数据,请稍等"; + titleLabel.font = [UIFont systemFontOfSize:16]; + titleLabel.textColor = [UIColor doraemon_blue]; + titleLabel.textAlignment = NSTextAlignmentCenter; + [self.view addSubview:titleLabel]; + //拉取最新的mock数据 [[DoraemonMockManager sharedInstance] queryMockData:^(int flag) { NSString *toast = nil;