问题描述
使用一键登录窗口模式跳转页面该窗口仍然存在下一个页面上
重现步骤
BBFCustomUIModel *custonUIModel = [BBFCustomUIModel getInstance];
self.customModel = [custonUIModel configCustomUIModel:1 withType:0 viewController:self];
self.customModel.currentVC = self;
[[NTESQuickLoginManager sharedInstance] setupModel:self.customModel];
custonUIModel.didOtherAccounts = ^{
[[NTESQuickLoginManager sharedInstance] closeAuthController:^{
}];
[UIView animateWithDuration:2 animations:^{
weakSelf.loginView.alpha = 1;
}];
};
-
(void)jumpEditInformation {
dispatch_async(dispatch_get_main_queue(), ^{
[[NTESQuickLoginManager sharedInstance] closeAuthController:^{
[UIView animateWithDuration:0.3 animations:^{
self.loginView.alpha = 1;
}];
}];
if (BBFUserM.sex == 0) {
BBFCompleteProfileVC *vc = [[BBFCompleteProfileVC alloc]init];
[self.navigationController pushViewController:vc animated:YES];
}else {
[[NSNotificationCenter defaultCenter] postNotificationName:BBFNotificationLoginState object:nil];}});
}
我要怎么做才能使登录页面真正附在我的登录页上

