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]; } }