ScreenShots:

iPhone4:

iPhone5:

Description:

1
2
3
4
A Custom Camera with AVCaptureSession to take a square picture. 
And the UI is patterned on Instagram.

It can work in iPad, too.

Codes:

go to github

Usage:

0、Import four frameworks:

1
CoreMedia.framework、QuartzCore.framework、AVFoundation.framework、ImmageIO.framework

1、Drag “SCCaptureCamera” and “SCCommon” to your project.

2、Import “SCNavigationController.h” and code like this:

1
2
3
SCNavigationController *nav = [[SCNavigationController alloc] init];
nav.scNaigationDelegate = self;
[nav showCameraWithParentController:self];

3、After take a picture, you can call back with delegate or a notification.

  • delegate:
1
2
- (void)didTakePicture:(SCNavigationController *)navigationController 
image:(UIImage *)image
  • notification:
1
2
add a notification whose name is kNotificationTakePicture
(just search "kNotificationTakePicture" in my demo project)

Finally, set SWITCH_SHOW_DEFAULT_IMAGE_FOR_NONE_CAMERA which is in the file SCCaptureCameraController.m to 0, it is just a joke for the devices which cannot take a picture.