Created
February 10, 2016 20:56
-
-
Save bmichotte/46fdc8749f2402dce9c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyXLFormScreen < PM::XLFormScreen | |
def form_data | |
[ | |
{ | |
cells: [ | |
{ | |
title: 'my textview', | |
name: :my_textview, | |
type: :textview, | |
cell_class: 'MyXLFormTextViewCell' | |
} | |
] | |
} | |
] | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyXLFormTextViewCell < XLFormTextViewCell | |
def self.formDescriptorCellHeightForRowDescriptor(rowDescriptor) | |
100 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment