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.
我想知道是否有人知道在全屏模式下播放视频时隐藏音量滑块但保留标准控件(如播放/暂停、上一个/下一个等)的方法
谢谢
只是一个建议,完全未经测试:)
for (UIView *view in [volumeSlider subviews]) { if ([[view isKindOfClass:[MPVolumeSlider class]]) { [view setHidden:YES]; } }