码迷,mamicode.com
首页 > 其他好文 > 详细

在界面 上生成一个摄像头.

时间:2014-07-02 22:03:44      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:for   io   line   window   type   app   

 

            UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];

            

            imagePickerController.delegate = self;

            imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;

            imagePickerController.cameraCaptureMode = UIImagePickerControllerCameraCaptureModePhoto;

            

            imagePickerController.showsCameraControls = NO;

            UIView *controllerView = imagePickerController.view;

            

            controllerView.alpha = 0.0;

            controllerView.transform = CGAffineTransformMakeScale(0.5, 0.5);

            

            [[[[UIApplication sharedApplication] delegate] window] addSubview:controllerView];

            

            [UIView animateWithDuration:0.3

                                  delay:0.0

                                options:UIViewAnimationOptionCurveLinear

                             animations:^{

                                 controllerView.alpha = 1.0;

                             }

                             completion:nil

             ];

在界面 上生成一个摄像头.,布布扣,bubuko.com

在界面 上生成一个摄像头.

标签:for   io   line   window   type   app   

原文地址:http://www.cnblogs.com/willbin/p/3819005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!