chore: 更新 .gitignore 文件并删除过时的文档

主要变更:
1. 在 .gitignore 中添加了 Docs/ 文件夹,以忽略文档相关文件。
2. 删除了多个过时的文档,包括构建指南、编译修复指南和当前状态报告等。

此更新旨在清理项目文件,确保版本控制的整洁性。
This commit is contained in:
edwinQQQ
2025-10-16 16:04:15 +08:00
parent 90360448a1
commit a0e83658c6
52 changed files with 1377 additions and 5953 deletions

View File

@@ -106,6 +106,13 @@
make.leading.mas_equalTo(self.view);
make.trailing.mas_equalTo(self.view);
}];
//
__weak typeof(self) weakSelf = self;
[self.momentListView loadWithDynamicInfo:@[] refreshCallback:^{
__strong typeof(weakSelf) self = weakSelf;
[self loadUserDetailInfo];
}];
}
// MARK: - Data Loading
@@ -143,7 +150,7 @@
- (void)updateHeaderWithUserInfo:(UserInfoModel *)userInfo {
NSDictionary *userInfoDict = @{
@"nickname": userInfo.nick ?: @"未设置昵称",
@"uid": [NSString stringWithFormat:@"%ld", (long)userInfo.uid],
@"uid": [NSString stringWithFormat:@"%ld", (long)userInfo.erbanNo],
@"avatar": userInfo.avatar ?: @"",
@"following": @(userInfo.followNum),
@"followers": @(userInfo.fansNum)