miy
miy

Reputation: 43

Is it possible implement this using TableUI

I'm not a native speaker of English, but I want to ask a question on Stack Overflow. and I am just started to make my iOS App.

This table has 3 rows and a column can be added.

Or, Table has 3 columns and a row can be added.

I imagine table like this.

Is it possible implement this using native swift TableUI?

Thank you for reading.

Table1

enter image description here

Table2

enter image description here

Upvotes: 0

Views: 35

Answers (1)

matt
matt

Reputation: 535850

What you've drawn looks like a kind of spreadsheet layout. It doesn't correspond to anything built in to iOS, except for the basic fact that it's a drawing.

If the goal is to lay out elements in more or less the relationship that your drawn cells have, with multiple rows and columns, you could use a UICollectionView to formulate a kind of grid layout.

Upvotes: 2

Related Questions