Hi all!
I trying to solve a problem in an iOS app for days now. I think it's something really stupid and that I'm missing something. Hope someone will be able to help me and I will be really graceful for that!
Goal: In one Window, render few labels and then a TableView and be able to scroll thru the whole content/window.
So far I'm not able to do this. I tried to add a ScrollView inside the Window, but I think that's not the correct approach. I also tried to add a height to the View that is holding the TableView, but that also didn't solved the problem.
I created a simple image to illustrate my problem

Alloy template:
<Alloy> <Window> <Label id="title"/> <Label id="url"/> <View> <Label text="Past values" /> <View> <TableView></TableView> </View> </View> </Window> </Alloy>