Hi, I found this code on stack overflow for iPhone 5 5s
https://stackoverflow.com/questions/12674917/iphone-5s-low-light-boost-mode
I don't have the knowledge to write this in objective c maybe with some help
I can make it work . ?
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 . ?