我在我的应用程序中包含FB和G +注册。

我唯一找不到答案的是如何自定义GPPSignInButton。

我制作了一个常规的UIButton并将其类更改为GPPSignInButton。

结果是这样的:



我不知道这个蓝色区域是什么,以及它如何结束,但是我无法通过调用这些方法中的任何一个来更改它

_gButton.backgroundColor = [UIColor redColor];
[_gButton setBackgroundColor:[UIColor redColor]];
[_gButton setBackgroundImage:[UIImage imageNamed:@""] forState:UIControlStateNormal];


我只需要一个Google登录按钮即可成为透明按钮。
如何实现呢?

最佳答案

您可以拥有自己的UIButton,将其与IBAction连接到UIViewController并自己运行身份验证过程,这就是“登录”按钮在幕后的作用:

- (IBAction)signInWithGooglePlusButtonPressed:(UIButton *)sender {
    GPPSignIn *googleSignIn = [GPPSignIn sharedInstance];
    googleSignIn.shouldFetchGooglePlusUser = YES;
    googleSignIn.shouldFetchGoogleUserEmail = YES;
    googleSignIn.clientID = @"CLIENT_ID";
    googleSignIn.scopes = @[ @"profile" ];
    googleSignIn.delegate = self;

    [googleSignIn authenticate];
}

关于ios - 如何自定义Google+登录按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28458197/

10-12 05:39