File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22
33 s . name = 'LGPlusButtonsView'
4- s . version = '1.1.0 '
4+ s . version = '1.1.1 '
55 s . platform = :ios , '6.0'
66 s . license = 'MIT'
77 s . homepage = 'https://github.com/Friend-LGA/LGPlusButtonsView'
Original file line number Diff line number Diff line change @@ -1462,7 +1462,7 @@ - (void)showButtonsAnimated:(BOOL)animated completionHandler:(void(^)())completi
14621462 animated: animated
14631463 completionHandler: ^(BOOL result)
14641464 {
1465- if (result && index == _buttonsArray.count )
1465+ if (result && index == _buttonsArray.count - 1 )
14661466 {
14671467 if (completionHandler) completionHandler ();
14681468
@@ -1525,7 +1525,7 @@ - (void)hideButtonsAnimated:(BOOL)animated completionHandler:(void(^)())completi
15251525 animated: animated
15261526 completionHandler: ^(BOOL result)
15271527 {
1528- if (result && index == _buttonsArray.count )
1528+ if (result && index == _buttonsArray.count - 1 )
15291529 {
15301530 if (completionHandler) completionHandler ();
15311531
You can’t perform that action at this time.
0 commit comments