FXForms
FXForms copied to clipboard
Longtext not working
I have created a very simple form (in RubyMotion), using the following:
class TemplateForm < NSObject
def fields
[
{
FXFormFieldKey => "title",
FXFormFieldTitle => "Title"
},
{
FXFormFieldKey => "content",
FXFormFieldTitle => "Content",
FXFormFieldType => "longtext",
# This also has same result
# FXFormFieldType => FXFormFieldTypeLongText,
FXFormFieldPlaceholder => "Write your message..."
}
]
end
end
but the "content" field is not quite right:
All other types seem to work fine. Tried lowering to a couple different versions too, with same results...
In Reveal, the order of the fields also seem messed up:
I have the same issue
have to add @property (nonatomic, copy) NSString *about;
in your .h file