Implementation of the iPhone power-on Function

Source: Internet
Author: User

How does the iPhone implement the flashlight function?

First, define an avcapturesession instance object in the. h file.

Avcapturesession * torchsession;

 

Then, set the. M file as follows during initialization:

Avcapturedevice * capturedevice = [avcapturedevice defaultdevicewithmediatype: avmediatypevideo];

Avcapturedeviceinput * flashinput = [avcapturedeviceinput deviceinputwithdevice: capturedevice error: Nil];
Avcapturevideodataoutput * output = [[avcapturevideodataoutput alloc] init];

Avcapturesession * session = [avcapturesession alloc] init];

[Session beginconfiguration];
[Session addinput: flashinput];
[Session addoutput: output];

[Capturedevice lockforconfiguration: Nil];
Capturedevice. torchmode = avcapturetorchmodeon;
[Capturedevice unlockforconfiguration];

[Output release];
[Session commitconfiguration];
[Session startrunning];

[Self settorchsession: session];
[Session release];

 

Finally, the torchsession object is released in dealloc.

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.