iOS Development Flashlight Use supplement

Source: Internet
Author: User

Today look at their own before the scanning, found that the lighting is not very clear, here to write again, also do the collection

#import <AVFoundation/AVFoundation.h>//Need reference framework

-(void) lightswitch:ison{

Avcapturedevice *capturedevice = [Avcapturedevice defaultdevicewithmediatype:avmediatypevideo]; Create a video-type drive object to start the flashlight

if (![  Capturedevice Hastorch]) return; Detects if there is a light

if (![ Capturedevice Hasflash]) return; Detects if there is a light

[Capturedevice Lockforconfiguration:nil];

The official explanation must be to hold a device lock--------in order to set hardware properties on an avcapturedevice, such as Focusmode and Exposuremode, Clients must first acquire a lock on the device. Clients should only, the device lock if they require settable device properties to remain unchanged. Holding the device lock unnecessarily may degrade capture quality on other applications sharing the device.

IsOn =!ison;

Capturedevice.torchmode = IsOn? Avcapturetorchmodeon:avcapturetorchmodeoff;

[Capturedevice unlockforconfiguration];

}

iOS Development Flashlight Use supplement

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.