航海燃料的更新

This commit is contained in:
fengshuo
2022-08-26 22:15:41 +08:00
parent 58da4adb2f
commit 522b8f6592
2 changed files with 7 additions and 2 deletions

View File

@@ -150,7 +150,7 @@
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
///666 8888view
if (otherGestureRecognizer.view.tag == 666 || otherGestureRecognizer.view.tag == 8888) {
if (otherGestureRecognizer.view.tag == 666 || otherGestureRecognizer.view.tag == 8888 || otherGestureRecognizer.view.tag == 888) {
self.scrollEnabled = NO;
return NO;
}

View File

@@ -382,7 +382,12 @@ NSString * const kSailingPrizeAlertKey = @"kSailingPrizeAlertKey";
XPRoomHalfWebView * webView = [[XPRoomHalfWebView alloc] init];
webView.url = URLWithType(kSailingActivityURL);
webView.isSailing = YES;
[TTPopup popupView:webView style:TTPopupStyleActionSheet];
TTPopupService * config = [[TTPopupService alloc] init];
config.contentView = webView;
config.didFinishDismissHandler = ^(BOOL isDismissOnBackgroundTouch) {
[self.presenter getSailingInfo];
};
[TTPopup popupWithConfig:config];
}
- (void)recordButtonAction:(UIButton *)sender {