是否有像WPF网格的UIView?

时间:2012-08-01 16:22:48

标签: ios layout xamarin.ios

在iOS中是否有一个UIView在列(或行)中布置两个子视图,这样一个视图具有固定的高度(或宽度),另一个视图扩展以填充空白空间?

例如,

WPF具有System.Windows.Controls.Grid类。我会用它来解决这个问题如下:

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="123" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>
    <Label Grid.Row="0" Content="I have a fixed height" />
    <Label Grid.Row="1" Content="My height expands to fill the empty space" />
</Grid>

0 个答案:

没有答案