chore: 更新 .gitignore 文件,移除不必要的包文件类型;新增邮箱验证码登录流程和 OAuth/Ticket 认证系统 API 文档;更新勋章相关逻辑,优化用户信息获取失败处理;调整勋章展示逻辑,支持多等级高亮功能。

This commit is contained in:
edwinQQQ
2025-07-14 17:37:10 +08:00
parent 99db078b62
commit 16f9041ba9
33 changed files with 15384 additions and 60390 deletions

View File

@@ -353,4 +353,16 @@
return _goButton;
}
// 穿
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
if (!self.userInteractionEnabled || self.hidden || self.alpha <= 0.01) {
return nil;
}
CGPoint goButtonPoint = [self.goButton convertPoint:point fromView:self];
if ([self.goButton pointInside:goButtonPoint withEvent:event]) {
return self.goButton;
}
return nil;
}
@end