Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
heroims committed Feb 21, 2014
1 parent 50c4be4 commit c03065a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
<false/>
<key>IDESourceControlProjectIdentifier</key>
<string>44CA6F83-479A-416D-8DD8-397CAC0ABD47</string>
<string>B2B9F996-0A28-4402-8843-62EB27736233</string>
<key>IDESourceControlProjectName</key>
<string>LeftRightSlider</string>
<key>IDESourceControlProjectOriginsDictionary</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ - (UIViewController *)popViewControllerAnimated:(BOOL)animated

-(void)pushViewControllerWithLRAnimated:(UIViewController *)viewController{

if (_unGestureDic==nil||[_unGestureDic valueForKey:NSStringFromClass([viewController class])]!=nil) {
if (_unGestureDic==nil||[_unGestureDic valueForKey:NSStringFromClass([viewController class])]==nil) {
UIPanGestureRecognizer *recognizer = [[UIPanGestureRecognizer alloc]initWithTarget:self
action:@selector(paningGestureReceive:)];
[recognizer delaysTouchesBegan];
Expand Down

0 comments on commit c03065a

Please sign in to comment.