-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with cancel and done completion blocks #29
Comments
UriyDevyataev
added a commit
that referenced
this issue
Aug 29, 2023
replace viewDidDisappear to viewWillDisappear for call self.dismissHandler
UriyDevyataev
added a commit
that referenced
this issue
Aug 30, 2023
ilia3546
pushed a commit
that referenced
this issue
Aug 30, 2023
UriyDevyataev
added a commit
that referenced
this issue
Aug 30, 2023
ilia3546
added a commit
that referenced
this issue
Aug 30, 2023
* fix #29 move enum DismissAction to FastisController * Update Controller.swift --------- Co-authored-by: Ilya Kharlamov <[email protected]>
UriyDevyataev
added a commit
that referenced
this issue
Sep 7, 2023
- change DayCell struct to class - child class TodayCell from DayCell
UriyDevyataev
added a commit
that referenced
this issue
Sep 7, 2023
ilia3546
pushed a commit
that referenced
this issue
Sep 26, 2023
- change DayCell struct to class - child class TodayCell from DayCell
ilia3546
pushed a commit
that referenced
this issue
Sep 26, 2023
ilia3546
pushed a commit
that referenced
this issue
Sep 26, 2023
ilia3546
pushed a commit
that referenced
this issue
Sep 26, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my case I need to perform different actions for cancel and done completion blocks. It could be simply implemented if your libary had one block for 2 actions with variable "isCancelled" or "isSuccess" or if there were 2 separate blocks for actions.
Instead your library has
doneHandler
anddismissHandler
. In case of canceldismissHandler
is called only, in case ofdone
they are both called and I need somehow to check if "dismiss" is called separately or immediately after "done"The text was updated successfully, but these errors were encountered: