gpt4 book ai didi

ios - 如何自定义 Google+ 登录按钮

转载 作者:行者123 更新时间:2023-11-28 19:52:25 26 4
gpt4 key购买 nike

我在我的应用中加入了 FB 和 G+ 注册。

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

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

结果是这样的:

enter image description here

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

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

我只需要一个谷歌登录按钮是透明按钮。如何实现?

最佳答案

您可以拥有自己的UIButton,将其与IBAction 连接到您的UIViewController 并自行运行身份验证过程,这就是 Sign in 按钮在幕后做的事情:

- (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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com