Editable UITable?

Hi, guys,

Is there a way to make an editable UI table? I mean, I’d like to display a UITable so the user can edit the text in the cells.

Is that possible?
Thanks in advance, TheWarHawk2005

Directly editing the text in the cell is not possible. Though you can present an alert with a text box when the user taps on something (you need either a button cell or listen to a tap on the row) and then update the table with the value from the alert.

Another option would be to build your whole table in HTML and use a WebView to display it. Then you have all the possibilities (input element, textarea element or contenteditable property on any other element).

3 Likes

Ok, thanks! I think I’ll go with the button>alert method.

1 Like