- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果您使用 PFLogInViewController 并启用了 PFLogInField SignUp Button 选项,如何自定义 PRESignUp ViewController 的外观?
最佳答案
您需要子类化 PFSignUpViewController
,并在 viewDidLoad
和 viewDidLayoutSubviews
中执行布局自定义。
class SpuggySignUpViewController: PFSignUpViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Customisation here
}
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
// More customisation here
}
}
要获取 PFLoginViewController
提供的 PFSignUpViewController
的自定义版本,只需实例化它,然后在 PFLoginViewController
中设置它即可。
let loginController = PFLoginViewController()
let customSignupController = SpuggySignUpViewController()
loginController.signUpController = customSignupController
// Now show your login Controller
关于swift - 如何自定义 PFSignUpViewController 的外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27711919/
是否可以将电子邮件字段设置为可选,供用户在 PFSignUpViewController 中完成? 我正在查看 Apple App Store 指南,他们在隐私部分说了以下内容; “17.2 要求用户
我在 iOS 上使用 Parse 的内置注册 View Controller ,带有 PFSignUpViewController实例设置为使用 emailAsUsername .使用此设置,它将用户
如果您使用 PFLogInViewController 并启用了 PFLogInField SignUp Button 选项,如何自定义 PRESignUp ViewController 的外观? 最
我正在使用 this tutorial设置我的 Parse 应用程序的注册 View ,我想使用 additionalField,但我希望它是一个可选字段。 MySignUpViewControlle
我正在使用 PFLoginViewController,而不是以模态方式呈现它,而是将其呈现为 subview ,这样我就可以获得漂亮的半透明背景: 唯一的问题是,当我选择“注册”时,它会以模态方式呈
嗨,我已将解析添加到我的 iOS 项目中,并尝试使用 PFLogInViewcontroller 和 PFSignUpViewController。我添加了所有必需的库,特别是 social.fram
我是一名优秀的程序员,十分优秀!