You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In storyboard I created a viewController: SettingsViewController
class SettingsViewController: FXFormViewController {
override func viewWillAppear(animated: Bool) {
formController.form = SettingsMainForm ();
}
}
Hi!
I've got different background colors on different settings screens and do not know how to set them the same.
I am working on Navamsa application (https://itunes.apple.com/ru/app/id1125810120).
My settings screen uses FXForms.
In storyboard I created a viewController: SettingsViewController
class SettingsViewController: FXFormViewController {
override func viewWillAppear(animated: Bool) {
formController.form = SettingsMainForm ();
}
}
class SettingsMainForm: NSObject, FXForm {
var settingsLocationForm: SettingsLocationForm?
func settingsAboutFormField() -> AnyObject {
return [
FXFormFieldTitle: "Help"
,FXFormFieldType: FXFormFieldTypeBitfield
]
}
}
class SettingsLocationForm: NSObject, FXForm {
}
The background color of viewController: SettingsViewController in storyboard is set to (244, 244, 244) DeviceRGB.
In simulator bg color of main settings form is (244, 244, 244), but bg color of about form is (239, 239, 244). And I stuck.
The text was updated successfully, but these errors were encountered: