Skip to content

Instantly share code, notes, and snippets.

View erkie's full-sized avatar
🕺
working

Erik Rothoff Andersson erkie

🕺
working
View GitHub Profile
@erkie
erkie / UsePhotoGrabber.m
Created June 21, 2011 18:27
Using PhotoGrabber
// How to use the Gist from https://gist.github.com/1038480
// By Erik Rothoff Andersson <erikrothoff.com>
#import "PhotoGrabber.h"
@implementation MyClass
- (void)doSomething
{
PhotoGrabber *grabber = [[PhotoGrabber alloc] init];
@erkie
erkie / PhotoGrabber.h
Created June 21, 2011 18:10
Capture photos from built in iSight-camera or other connected cameras using Objective-C
//
// PhotoGrabber.h
// By Erik Rothoff Andersson <erikrothoff.com>
//
#import <Foundation/Foundation.h>
#import <QTKit/QTKit.h>
@protocol PhotoGrabberDelegate <NSObject>