iOS Question ISO boost

joop

Active Member
Licensed User
Longtime User
Hi, I found this code on stack overflow for iPhone 5 5s

https://stackoverflow.com/questions/12674917/iphone-5s-low-light-boost-mode

B4X:
'https://stackoverflow.com/questions/12674917/iphone-5s-low-light-boost-mode

If ([[self backFacingCamera] respondsToSelector:@selector(isLowLightBoostSupported)]) {
  If ([[self backFacingCamera] lockForConfiguration:nil]) {
  If ([self backFacingCamera].isLowLightBoostSupported)
  [self backFacingCamera].automaticallyEnablesLowLightBoostWhenAvailable = YES;
  [[self backFacingCamera] unlockForConfiguration];
  }
}

I don't have the knowledge to write this in objective c maybe with some help
I can make it work . ?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…