0
iOS Control Center 기능을 실행할 수 있습니까? 예를 들어 화면 녹화 또는 손전등을 앱에서 직접 실행할 수 있습니까? 그렇다면 어떻게? 손전등을 사용하는 코드 아래Swift/iOS - 앱에서 직접 Control Center의 iOS 기능을 실행할 수 있습니까?
iOS Control Center 기능을 실행할 수 있습니까? 예를 들어 화면 녹화 또는 손전등을 앱에서 직접 실행할 수 있습니까? 그렇다면 어떻게? 손전등을 사용하는 코드 아래Swift/iOS - 앱에서 직접 Control Center의 iOS 기능을 실행할 수 있습니까?
사용이, 아이폰 OS 9에서
func flashlight() {
let flashLight: AVCaptureDevice? = AVCaptureDevice.default(for: .video)
if flashLight?.isTorchAvailable() && flashLight?.isTorchModeSupported(.on) {
let success: Bool? = try? flashLight?.lockForConfiguration()
if success ?? false {
if flashLight?.isTorchActive() != nil {
flashLight?.torchMode = .off
}
else {
flashLight?.torchMode = .on
}
flashLight?.unlockForConfiguration()
}
}
}
는, 화면 녹화가 ReplayKit 모양을 크게 이것을 간단하게 사용할 수 있습니다. 자세한 내용을 보려면 다음 사이트를 방문
func startRecording(_ sender: UIBarButtonItem, _ r: RPScreenRecorder) {
r.startRecording(handler: { (error: Error?) -> Void in
if error == nil { // Recording has started
sender.title = "Stop"
} else {
// Handle error
print(error?.localizedDescription ?? "Unknown error")
}
})
}
func stopRecording(_ sender: UIBarButtonItem, _ r: RPScreenRecorder) {
r.stopRecording(handler: { previewViewController, error in
sender.title = "Record"
if let pvc = previewViewController {
if UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiom.pad {
pvc.modalPresentationStyle = UIModalPresentationStyle.popover
pvc.popoverPresentationController?.sourceRect = CGRect.zero
pvc.popoverPresentationController?.sourceView = self.view
}
pvc.previewControllerDelegate = self
self.present(pvc, animated: true, completion: nil)
}
else if let error = error {
print(error.localizedDescription)
}
})
}
// MARK: RPPreviewViewControllerDelegate
func previewControllerDidFinish(_ previewController: RPPreviewViewController) {
previewController.dismiss(animated: true, completion: nil)
}