File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lite/examples/posenet/ios/PoseNet/Camera Feed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ class CameraFeedManager: NSObject {
228
228
// MARK: Notification Observer Handling
229
229
private func addObservers( ) {
230
230
NotificationCenter . default. addObserver (
231
- self , selector: #selector( CameraFeedManager . sessionRuntimeErrorOccured ( notification: ) ) ,
231
+ self , selector: #selector( CameraFeedManager . sessionRuntimeErrorOccurred ( notification: ) ) ,
232
232
name: NSNotification . Name. AVCaptureSessionRuntimeError, object: session)
233
233
NotificationCenter . default. addObserver (
234
234
self , selector: #selector( CameraFeedManager . sessionWasInterrupted ( notification: ) ) ,
@@ -272,7 +272,7 @@ class CameraFeedManager: NSObject {
272
272
delegate? . cameraFeedManagerDidEndSessionInterruption ( self )
273
273
}
274
274
275
- @objc func sessionRuntimeErrorOccured ( notification: Notification ) {
275
+ @objc func sessionRuntimeErrorOccurred ( notification: Notification ) {
276
276
guard let error = notification. userInfo ? [ AVCaptureSessionErrorKey] as? AVError else {
277
277
return
278
278
}
You can’t perform that action at this time.
0 commit comments