config(project): 更新项目配置和资源文件

- 添加 .gitignore 文件忽略 IDE 和 Xcode 用户特定文件
- 重命名应用图标文件从 app_logo.png 到 logo.png
- 更新 GoogleService-Info.plist 中的 Firebase 配置信息
- 修改 MacroDefine.h 中的 NowUserId 常量值
- 注释掉 MainOldViewController.m 中的 home2 和 noti2 菜单项
- 更新项目文件名、Bundle ID 和显示名称等项目配置
- 在 README.md 中添加通讯录权限维护说明和图标隐藏说明
- 更新 Xcode scheme 配置中的应用名称
This commit is contained in:
JiaJun
2026-07-30 17:22:20 +08:00
parent 5b116ab2eb
commit e3dfd93fad
14 changed files with 126 additions and 33 deletions

View File

@@ -92,13 +92,13 @@
// height = 60;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuHomeType]];
//
height = height + 60;
LinkConfig *config = [[LinkConfig alloc] init];
config.isGoBack = YES;
config.icon = @"home2";
config.name = @"HOME2";
config.linkUrl = appDelegate.mainURLString;
[menuArray addObject:config];
// height = height + 60;
// LinkConfig *config = [[LinkConfig alloc] init];
// config.isGoBack = YES;
// config.icon = @"home2";
// config.name = @"HOME2";
// config.linkUrl = appDelegate.mainURLString;
// [menuArray addObject:config];
//
// if (!ISNULLSTR(appDelegate.data.linkConfig)) {
@@ -130,8 +130,8 @@
// height = height + 70;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuRefreshType]];
//
height = height + 70;
[menuArray addObject:[NSNumber numberWithInteger:DSWebMenuNotiType]];
// height = height + 70;
// [menuArray addObject:[NSNumber numberWithInteger:DSWebMenuNotiType]];
// }
self.webMenuCollectionView.shareArray = menuArray;