Use the camera in Apple for Video Recording

Source: Internet
Author: User
-(Void) choosephotobysourcetype: (uiimagepickercontrollercameracapturemode) sourcetype
{
M_imagepickercontroller = [[[uiimagepickercontroller alloc] init] autorelease];
M_imagepickercontroller.modaltransitionstyle = uimodaltransitionstylecoververtical;
M_imagepickercontroller.sourcetype = uiimagepickercontrollersourcetypecamera;
M_imagepickercontroller.cameradevice = uiimagepickercontrollercameradevicefront;
// M_imagepickercontroller.cameracapturemode = uiimagepickercontrollercameracapturemodevideo;


Nsarray * sourcetypes = [uiimagepickercontroller availablemediatypesforsourcetype: m_imagepickercontroller.sourcetype];
If ([sourcetypes containsobject :( nsstring *) kuttypemovie])
{
M_imagepickercontroller.mediatypes = [nsarray arraywithobjects :( nsstring *) kuttypemovie, (nsstring *) kuttypeimage, nil];
}


// M_imagepickercontroller.cameracapturemode = sourcetype;
// M_imagepickercontroller.mediatypes
// Imagepickercontroller. allowsediting = yes;

[Self presentmodalviewcontroller: m_imagepickercontroller animated: Yes];

}

-(Void) takephoto
{
If ([uiimagepickercontroller issourcetypeavailable: uiimagepickercontrollersourcetypecamera])
{


[Self choosephotobysourcetype: Nil];
}
}

// implement viewdidload to do additional setup after loading the view, typically from a nib.
-(void) viewdidload {
[Super viewdidload];
uibutton * takephoto = [uibutton buttonwithtype: uibuttontyperoundedrect];
[takephoto settitle: @ "video" forstate: uicontrolstatenormal];
[takephoto addtarget: Self action: @ selector (takephoto) forcontrolevents: uicontroleventtouchupinside];
takephoto. frame = cgrectmake (50,100,100, 30);
[self. view addsubview: takephoto];
}

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.