- XJBaseWebViewVC: 补全 finishActivity 消息分发,基类默认实现改为 pop 返回 - XJBaseWebViewVC: 新增 decidePolicyForNavigationAction 拦截非 HTTP scheme(alipay:// 等),避免 WKWebView 加载失败导致白屏 - XJBaseWebViewVC: 新增 webViewWebContentProcessDidTerminate,进程被系统杀死后自动 reload - XJBankWebDetailViewController: 移除重复的 finishActivity override,复用基类 pop 逻辑 - AppDelegate: 移除导致启动卡顿的 WKWebView 预热代码 - HomeV2: 将 Controllview 相关文件移入 Controllview 子目录,整理目录结构
59 lines
1.6 KiB
Objective-C
59 lines
1.6 KiB
Objective-C
//
|
|
// EmptyFunctionDevelopmentVC.m
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2026/2/10.
|
|
//
|
|
|
|
#import "EmptyFunctionDevelopmentVC.h"
|
|
|
|
@interface EmptyFunctionDevelopmentVC ()
|
|
|
|
@end
|
|
|
|
@implementation EmptyFunctionDevelopmentVC
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
self.isHidenNaviBar = false;
|
|
self.view.backgroundColor = KWhiteColor;
|
|
|
|
UIImageView * deveImg = [[UIImageView alloc] init];
|
|
deveImg.image = [UIImage imageNamed:@"deveEmptyImg"];
|
|
[self.view addSubview:deveImg];
|
|
|
|
[deveImg mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
make.width.mas_offset(90);
|
|
make.height.mas_offset(76);
|
|
make.centerX.mas_equalTo(self.view);
|
|
make.centerY.mas_equalTo(self.view).offset(-70) ;
|
|
}];
|
|
|
|
UILabel * dataLabel = [[UILabel alloc] init];
|
|
dataLabel.text = @"~ 正在研发中,敬请期待 ~";
|
|
dataLabel.font = SYSTEMFONT(14);
|
|
dataLabel.textColor = UIColorHex(#B6B6B6);
|
|
dataLabel.textAlignment = NSTextAlignmentCenter;
|
|
[self.view addSubview:dataLabel];
|
|
|
|
[dataLabel mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
make.top.mas_equalTo(deveImg.mas_bottom).offset(12);
|
|
make.left.right.mas_offset(0);
|
|
}];
|
|
|
|
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
/*
|
|
#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
|