Skip to content

Commit

Permalink
Merge pull request #247 from Gucky/master
Browse files Browse the repository at this point in the history
Fixed target method signature of setAnimationDidStopSelector
  • Loading branch information
michaeltyson authored Jun 9, 2017
2 parents 5e2f244 + d1599c2 commit 487627d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TPKeyboardAvoiding/UIScrollView+TPKeyboardAvoidingAdditions.m
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ - (void)keyboardViewAppear:(NSString *)animationID context:(void *)context {
self.keyboardAvoidingState.keyboardAnimationInProgress = true;
}

- (void)keyboardViewDisappear:(NSString *)animationID finished:(BOOL)finished context:(void *)context {
if (finished) {
- (void)keyboardViewDisappear:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {
if (finished.boolValue) {
self.keyboardAvoidingState.keyboardAnimationInProgress = false;
}
}
Expand Down

0 comments on commit 487627d

Please sign in to comment.