ios - Lock exposure for 3 consecutives photos -


is there way lock exposure 3 consecutives photos interval of 10sec light doesn't change during process? (timer)

do {      try self.currentcapturedevice.lockforconfiguration()          if self.currentcapturedevice.exposurepointofinterestsupported {              self.currentcapturedevice.exposurepointofinterest = cgpoint(x: 0.0, y: 1.0)              self.currentcapturedevice.exposuremode = .locked          }       self.currentcapturedevice.unlockforconfiguration()             } catch let error nserror {      print(error) } 

i noticed exposure set default after first photo.


Comments

Popular posts from this blog

php - Extract Text from HTTP referer -

Receive udp packets in android gstreamer -

authentication - ASP.NET Core 1.0. Bearer Token, cannot access custom claims -