Reading User Data from a Table

Hello Experts,


I'm trying to create an app that requires the user to key in some data in the form of atleast 3 rows and 3 columns (Load, Displacement and Angle).


I am thinking that the best way to get the user to insert these data is through a table format instead of using atleast 9 textboxes. However UITableView only displays the data and doesnt allow me to use it as an input device.


What's the best way to get the user to insert data in a tabular format in Swift?


Thanks.

Regards,

Kenneth.

Accepted Answer

You can use a custom table view cell and add input fields such as UITextField. It's very common.

Thank you very much. I guess this would be the best way then. I thought there was a much more elegant way in Swift.

But thanks for pointing this out to me.


Regards,

Kenneth.

Reading User Data from a Table
 
 
Q