如何在 TableView 的 iOS 设置页面复制评论区的外观?

How can I duplicate the look of a comment area on the iOS setting page in a TableView?

我想在我的设置页面中添加评论。 iOS 设置的设置 > Wi-Fi 页面上 "Ask to Join Networks" 下方的评论区。

任何人都可以建议我如何做到这一点以及如何使用动态键入以便当用户更改字体大小时评论区域会更改以匹配 iOS 设置中的内容?

请注意,如果需要,我可以使用 iOS 渲染器。此时我只关心 iOS 解决方案。

非常感谢

在iOS11,设置页面的背景色为#EAEAF1,非控制区域内的文字颜色为#59595F

因此,将 Label 添加到 ViewCell,但将其放在另一个容器中,这样您就可以控制标签的边距,否则您的标签文本将在左侧对齐而不是垂直对齐到设置控件。

像这样的事情会让你开始:

<ViewCell>
    <StackLayout 
        Orientation="Horizontal"
        BackgroundColor="#EAEAF1">
        <Label
            Margin="15"
            TextColor="#59595F" 
            HorizontalOptions="CenterAndExpand"
            LineBreakMode="WordWrap" 
            Text="This is a multi-line custom ViewCell-based label, sdfsdfsdfsddf sdfsdf sdf sdf sdf sdf sd fsd fsd fsdf df" />
    </StackLayout>
</ViewCell>