解析facebook登录后台问题
Posted
技术标签:
【中文标题】解析facebook登录后台问题【英文标题】:parse facebook login background issue 【发布时间】:2015-06-25 21:13:52 【问题描述】:我使用这段代码来设置 UI 框架:
PFLogInViewController *logInViewController = [[PFLogInViewController alloc] init];
[logInViewController setDelegate:self]; // Set ourselves as the delegate
// Create the sign up view controller
logInViewController.fields = PFLogInFieldsFacebook;
// Present the log in view controller
[self presentViewController:logInViewController animated:YES completion:NULL];
[logInViewController.logInView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"facebookreg.png"]]];
[logInViewController.logInView setLogo:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"joychain.png"]]];
为什么屏幕上显示的是 4 个 facebookreg.png 而不是 1 个?
【问题讨论】:
【参考方案1】:试试这条线:
logInViewController.logInView.layer.contents = (id)[UIImage imageNamed:@"facebookreg.png"].CGImage;
希望这对你有用。
【讨论】:
以上是关于解析facebook登录后台问题的主要内容,如果未能解决你的问题,请参考以下文章
登录 Facebook 时,Unity ios 游戏在后台被杀死