修改了相亲结果的动画效果

This commit is contained in:
fengshuo
2022-01-06 10:47:52 +08:00
parent a24b1d7dce
commit 8add67c309
6 changed files with 33 additions and 5 deletions

View File

@@ -198,8 +198,9 @@
XPRoomDatingAnimationView * datingView = [[XPRoomDatingAnimationView alloc] init];
[self.highLevleView addSubview:datingView];
[datingView startAnimationWithModel:datingModel finishBlock:^(BOOL finish) {
[datingView removeFromSuperview];
[self.datingEffectQueue removeObject:datingModel];
if (self.datingEffectQueue > 0) {
if (self.datingEffectQueue.count > 0) {
DatingInfoModel * datingModel = [self.datingEffectQueue firstObject];
[self startDatingAnimation:datingModel];
}