Skip to content

Commit

Permalink
[#125] FIX : 호미프로필 화면전환 시간지연
Browse files Browse the repository at this point in the history
  • Loading branch information
ffalswo2 committed Jul 22, 2022
1 parent fb2be01 commit 69e969f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,11 @@ extension HomeViewController: UICollectionViewDelegate {
profileHomeVC.modalPresentationStyle = .fullScreen
profileHomeVC.modalTransitionStyle = .crossDissolve

present(profileHomeVC, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { [self] in
present(profileHomeVC, animated: true)
}

// present(profileHomeVC, animated: true)
// profileHomeVC.homieNavigationBarView.popNavigationController = { [self] in
// navigationController?.popViewController(animated: true)
// }
Expand Down

0 comments on commit 69e969f

Please sign in to comment.