UITableView vs UiScrollView which is the best option - Swift

0

Hello, I have the following doubt, there is a problem (and a good practice) I use a UiTableView to create the layout of my apps or it would be more recommended I use a UiView with a UiScrollView, considering that these layout may or may not contain input fields like textfields, date field .... etc.

Note: I'm creating my layouts programmatically

Thank you

    
asked by anonymous 16.08.2018 / 23:56

1 answer

0

It depends on the screen, if it is a screen where nothing repeats, it is preferable to use a scrollview. But if it is a sign-up screen, for example, that multiple items are repeated, tableview or colection view is more advised and even easier to do.

    
28.08.2018 / 12:51