知道在ios中按下facebook登录按钮的时间

时间:2014-04-05 16:25:19

标签: ios objective-c facebook facebook-login facebook-ios-sdk

我想在有人按下facebook登录按钮时显示HUD。目前我很难知道何时按下按钮。

我试图抓住视图的所有点击,但这对于facebook按钮上的任何共鸣都不起作用...

如何知道何时按下facebook登录,打电话给我的HUD?

另外,知道facebook登录按钮触发哪个功能会很高兴。找不到..

在LoginViewController.m(UPDATED,工作解决方案)中获取点击的代码

// workaround to find out when user tapped the login button
-(void)addTapFinder {
    UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped)];

    tapped.numberOfTapsRequired = 1;
    tapped.delegate = self;
    tapped.cancelsTouchesInView = NO;

    FBLoginView *fbButton = [[FBLoginView alloc] init];
    UIView * fbView = (UIView *)fbButton;
    fbView = [self.view viewWithTag:fbloginViewTAG];

    [fbView addGestureRecognizer:tapped];

    DLog(@"found View %@", fbView);
}


-(void)tapped {
    DLog(@"tapped");
}

调试器日志

[872:60b] -[LoginViewController FacebookLogin] [Line 283] loginview subviews: <FBShadowLabel: 0x16d17840; baseClass = UILabel; frame = (33 -1; 168 46); text = 'Connect  Facebook'; autoresize = W; userInteractionEnabled = NO; layer = <CALayer: 0x18136240>>
[872:60b] -[LoginViewController showFBLogin] [Line 231] show login View
[872:60b] -[LoginViewController tapped] [Line 250] tapped   // tapped somewhere in self.view, but not the login button
// tapped the login button, no "tapped" entry in the logfile

完整代码下方:

LoginViewController.h

#import <UIKit/UIKit.h>
#import <FacebookSDK/FacebookSDK.h>
#import "WebApi.h"
#import "SVProgressHUD.h"

@interface LoginViewController : UIViewController <FBLoginViewDelegate, UIGestureRecognizerDelegate>

-(IBAction)toSurroundView;

@property (nonatomic, strong) WebApi *swebapi;
@property (nonatomic) BOOL isFirstFBLoginDone;
@property (weak, nonatomic) IBOutlet UIView *loginView;

@end

LoginViewController.m

#import "LoginViewController.h"

@interface LoginViewController ()
@end

@implementation LoginViewController


static int const fbloginViewTAG = 203;

-(void)vinit {
    self.swebapi = [[WebApi alloc] init];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"didRegisterUser" object:nil ];
    self.isFirstFBLoginDone = FALSE;
}

- (void)viewDidLoad
{
    [self vinit];
    [super viewDidLoad];
    [self showFBLogin];
}


-(void)handleNotification:(NSNotification *)message {
    if ([[message name] isEqualToString:@"didRegisterUser"]) {
        [self toSurroundView];
    }
}

-(IBAction)toSurroundView {
    [SVProgressHUD dismiss]; // connecting to Facebook, this is called to late!

    UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *surroundViewController = [mainStoryboard instantiateInitialViewController];
    surroundViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    [self presentViewController:surroundViewController animated:YES completion:nil];
}

#pragma mark - Facebook Things

-(void)showFBLogin {
    UIView *connectView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
    [self.view addSubview:connectView];
    [self FacebookLogin];   
    [self addTapFinder]; 
    DLog(@"show login View");
}

// workaround to find out when user tapped the login button
-(void)addTapFinder {
    UITapGestureRecognizer *tapped = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped)];

    tapped.numberOfTapsRequired = 1;
    tapped.delegate = self;
    tapped.cancelsTouchesInView = NO;

    FBLoginView *fbButton = [[FBLoginView alloc] init];
    UIView * fbView = (UIView *)fbButton;
    fbView = [self.view viewWithTag:fbloginViewTAG];

    [fbView addGestureRecognizer:tapped];

    DLog(@"found View %@", fbView);
}

-(void)tapped {
    DLog(@"tapped");
}

-(void)FacebookLogin {

    // https://developers.facebook.com/docs/ios/login-ui-control/
    // https://developers.facebook.com/docs/ios/session/

    FBLoginView *loginView = [[FBLoginView alloc] init];
    loginView.delegate = self;
    loginView.tag = fbloginViewTAG;
    loginView.readPermissions = @[@"email", @"basic_info"];
    loginView.frame = CGRectOffset(loginView.frame,
                                   (self.view.center.x - (loginView.frame.size.width / 2)),
                                   ([[UIScreen mainScreen] bounds].size.height - 80));

    // change fb login button text
    UILabel *fblabel = [loginView subviews][1];
    fblabel.text = @"Connect  Facebook";

    DLog(@"loginview subviews: %@", [loginView subviews][1]);

    [self.view addSubview:loginView];
    [loginView sizeToFit];

}

- (void)loginViewFetchedUserInfo:(FBLoginView *)loginView
                            user:(id<FBGraphUser>)user {

    [SVProgressHUD showWithStatus:@"Connecting with Facebook"];
    if (! self.isFirstFBLoginDone) {
    #warning simple workaround, but not solving the source problem of twiced call from loginViewFetchedUserInfo
        if ([[SingletonClass sharedInstance] hasCredentials] == NO) {
            [self.swebapi registerUser:user];
        } else {
            [self toSurroundView];
        }

        self.isFirstFBLoginDone = TRUE;

    } // isFirstFBLoginDone
}
@end

1 个答案:

答案 0 :(得分:2)

可能导致代码出现问题的一些事情 -

  1. 设置UIGestureRecognizer的委托以强制识别多个手势识别器,特别是同时识别此新手势识别器以及Facebook登录按钮的手势识别器)使用:gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer

  2. UIGestureRecognizer的{​​{1}}媒体资源设为NO。

  3. 您应该将cancelsTouchesInView声明为fbButton并投放UIView,而不是将fbButton的指针初始化为FBLoginView。进入UIView

  4. (最重要的是)当您将FBLoginView添加到按钮时,您需要将UITapGestureRecognizer添加到视图中。

  5. 变化:

    [self.view addGestureRecognizer:tapped];
    

    为:

    [fbButton addGestureRecognizer:tapped];