2

I want to create a custom form that a user can fill out for ios, then email to themselves or upload to cloud etc. What is the best way of approaching this?

Eg a gas engineer has to complete a gas safe certificate for his work. He/she fills out the form on his device and then sends as email or uploads to cloud. Creating the cert is no problem, capturing the entered data and emailing it as it appears on the screen seems to have me stuck.

Mat
  • 202,337
  • 40
  • 393
  • 406
JSA986
  • 5,870
  • 9
  • 45
  • 91

2 Answers2

2

This website CocoaControls has quite a few custom views that you can leverage in your applications. Specifically, I found these controls: IBAForms and QuickDialog.

Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201
  • Thanks for that, checked those out and looked interesting, unfortunately i dont understand how to implement any of it to ios 5 or xcode – JSA986 Mar 10 '12 at 10:12
0

What iOS version are you using? in iOS 5 there is a static cells mode that is excellent for creating forms in UITableView, see: http://www.scott-sherwood.com/?p=219&page=2 and http://www.raywenderlich.com/5191/beginning-storyboards-in-ios-5-part-2

Otherwise, you can still use Dynamic cells and create ifs to customize each cell in the cellForRowAtIndexPath:

Personally, I'm not a big fan of custom libraries for this kind of job, but that's a personal preference :)

allaire
  • 5,995
  • 3
  • 41
  • 56
  • Thanks for the reply, Im Using IOS 5, I can create the form I just dont undertand how to capture the information so it can be emailed or shared... – JSA986 Mar 10 '12 at 10:14