Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
知道如何在 MonoTouch 中设置行高吗?
UIFont.LineHeight是只读的并且没有设置器。
UIFont.LineHeight
单触:6.0.8
这是一个 Objective-Creadonly属性,请参阅 Apple文档。
readonly
您需要做的是创建一个新UIFont实例,其大小将与您想要的行高匹配,并在您的代码中分配(或使用)该字体实例。
UIFont
前段时间我需要更改行距,但保持字体大小。也许这个解决方案是一个肮脏的 hack,但它比编写自己的 UI 组件或使用第三方库更简单。