我使用这个快速代码从我的应用程序中登录Facebook:
PFFacebookUtils.logInInBackgroundWithReadPermissions(["public_profile","user_about_me","email"]) { (user :PFUser?, error: NSError?) -> Void in
MBProgressHUD.hideHUDForView(self.view, animated: true)
if user != nil {
self.getFacebookUserInfo()
}
我想自定义Facebook登录屏幕的导航栏。我该如何更改代码才能实现这一目标?