How to place two iOS UITableViews side by side?

I have a client who needs a view layout that contains both typical rows grouped by full width and another section on the same view that contains two types of side tables.

So, like this:

______________
______________
______  ______
______  ______
______  ______

______________
______________

Any smart ways to do this? I understand that this view goes against the iOS paradigm, but I want to explore the options before telling the designer no.

+3
source share
1 answer

( A), . 2 A. . , , , . A:

Table1ViewController *table1=[Table1ViewController alloc] initWithNibName:@"Table1ViewController" bundle:nil];

[self.views addSubView:table1];

table1.frame=CGRectMake(...,...,...,...) //Here you would define how you want to position your table.

, .

0

All Articles