infinitered / ProMotion-form

Deprecated -- use ProMotion-XLForm
19 stars 11 forks source link

Focussing the first form element in view #37

Closed jeanmartin closed 8 years ago

jeanmartin commented 9 years ago

Is there any way to do that? In formotion I could do

self.form.row(:title).text_field.becomeFirstResponder
markrickert commented 9 years ago

Here you go! :grin:

def on_appear
  cell = self.tableView.cellForRowAtIndexPath(NSIndexPath.indexPathForRow(0,inSection:0))
  cell.textField.becomeFirstResponder if cell.respond_to?("textField")
end
jamonholmgren commented 8 years ago

ProMotion-form has been officially deprecated. Thanks everyone!

http://jamonholmgren.com/deprecating-promotion-form/