How to implement live camera streaming in iphone?
I am developing one iphone application in which I want to implement live camera streaming feature.I d开发者_开发百科ont know how it possible and which freamwork I have to used. Please give me advice for this query. Thanks in advance.
You'll want to look at the AVFoundation.framework for camera streaming. Specifically the classes AVCaptureSession, AVCaptureDevice, and AVCaptureDeviceInput.
There is a Technical Q&A on doing this here: http://developer.apple.com/library/ios/#qa/qa2010/qa1702.html
精彩评论