WKInterfaceLabel
简单的问题:如果文本太长而无法放入标签的框架中,有没有办法制作滚动条?类似于UITextView
?
问问题
3756 次
4 回答
28
你绝对可以做到这一点。您需要做的就是WKInterfaceLabel
在情节提要中设置以下属性。
- Label => Lines = 0(WatchKit 将设置正确的数字)
- 大小 => 宽度= “相对于容器”
- 大小 => 高度=“适合内容的大小”
这将让您滚动到您心中的内容。我只是在一个示例应用程序中对其进行了模拟,它的工作原理与您期望的完全一样。
希望有帮助!
于 2015-03-18T03:42:53.957 回答
5
It isn't possible to have a WKInterfaceLabel
scroll its contents. Your only choice is to truncate the text or allow the label to grow and accommodate it.
于 2015-03-17T23:52:24.710 回答
1
您需要将标签的属性设置标签的高度设置为文本大小
如下
Set Lines Property = 0 (WatchKit auto set the right number)
Set Width = "Relative to Container" & Height = "Size to Fit Content"
于 2015-06-11T05:32:05.920 回答