編輯:它不是標記鏈接的副本。如果仔細觀察,問題就不同了。當進入背景時視頻頂部的遮罩視圖
如何在視頻進入背景時在視頻頂部顯示遮罩視圖?我正在研究一個密碼保護的內容應用程序,它需要掩碼屏幕來隱藏內容,當它進入後臺(這樣雙按主屏幕按鈕不會顯示內容或視頻)。如果沒有視頻播放但在任何視頻(例如YouTube)上失敗,我的屏蔽視圖邏輯工作正常,視頻快照清晰可見。
對一般問題,但不是當視頻正在播放這post會談。對於視頻,問題依然存在。我到目前爲止的代碼。
//AppDelegate.swift
var maskView: UIView!
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
maskView.backgroundColor = UIColor.redColor()
return true
}
func applicationDidEnterBackground(application: UIApplication) {
window?.addSubview(maskView)
}
func applicationWillEnterForeground(application: UIApplication) {
maskView.removeFromSuperview()
}
[控制在了iOS 7多任務切換的屏幕截圖]的可能的複製(http://stackoverflow.com/questions/18959411/controlling-the-screenshot-in-the-ios-7-多任務切換器) – JAL
@JAL它不是重複的。我的問題是針對播放時視頻背景。 – xoail