我正在尝试将按钮添加到UIVideoEditorController的底部工具栏。 这可能吗? 我可以修改/添加按钮到这个工具栏吗?
答案 0 :(得分:3)
Apple Docs明确提到
Important: The UIVideoEditorController class supports portrait mode only. This class is intended to be used as-is and does not support subclassing. The view hierarchy for this class is private; do not modify the view hierarchy. This class does not support modifications to its appearance by use of overlay views.
所以基本上不可能。
答案 1 :(得分:0)
这里我留下了一个可能的解决方案,但始终牢记来自Apple的警告。在这种情况下,我要更改工具栏的背景颜色,但它应该适用于您想要的任何修改。
<style>
.rounded_control {
border-radius: 20px;
background-color: #e00;
color=#e00;
}
</style>