Skip to content

Instantly share code, notes, and snippets.

@bmichotte
Created February 10, 2016 20:56
Show Gist options
  • Save bmichotte/46fdc8749f2402dce9c7 to your computer and use it in GitHub Desktop.
Save bmichotte/46fdc8749f2402dce9c7 to your computer and use it in GitHub Desktop.
class MyXLFormScreen < PM::XLFormScreen
def form_data
[
{
cells: [
{
title: 'my textview',
name: :my_textview,
type: :textview,
cell_class: 'MyXLFormTextViewCell'
}
]
}
]
end
end
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