<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Views of UIImagePickerController</title>
	<atom:link href="http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/</link>
	<description>Code and cogitation on all things mobile</description>
	<lastBuildDate>Wed, 01 Feb 2012 08:56:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: share code</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/comment-page-2/#comment-2485</link>
		<dc:creator>share code</dc:creator>
		<pubDate>Thu, 17 Nov 2011 09:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-2485</guid>
		<description>I like the valuable information you provide for your articles. I&#039;ll bookmark your weblog and take a look at again here frequently. I&#039;m fairly certain I will be informed lots of new stuff proper right here! Good luck for the next!</description>
		<content:encoded><![CDATA[<p>I like the valuable information you provide for your articles. I&#8217;ll bookmark your weblog and take a look at again here frequently. I&#8217;m fairly certain I will be informed lots of new stuff proper right here! Good luck for the next!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/comment-page-2/#comment-1424</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 21 Mar 2010 13:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-1424</guid>
		<description>Sudha - you can just use UIGetScreenImage(). It was approved by Apple last November pending any future solution.</description>
		<content:encoded><![CDATA[<p>Sudha &#8211; you can just use UIGetScreenImage(). It was approved by Apple last November pending any future solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sudha</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/comment-page-2/#comment-1420</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Tue, 16 Mar 2010 22:07:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-1420</guid>
		<description>Ben, did Alex or Rolando gave you some leads on this? could you share some info please?</description>
		<content:encoded><![CDATA[<p>Ben, did Alex or Rolando gave you some leads on this? could you share some info please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/comment-page-2/#comment-896</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 06 Nov 2009 14:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-896</guid>
		<description>Has anyone figured out a solution to this trouble?  Rolando, if you have a legal way of doing this or anyone else that is reasonably fast I would be willing to pay for the solution.  The new 3.1 routines are too slow.  UIGetScreenImage() works fast enough for our usage and uses little memory but it is part of the private api.  email: delay at pobox dot com if anyone has any code they want to give away or sell that solves this trouble.</description>
		<content:encoded><![CDATA[<p>Has anyone figured out a solution to this trouble?  Rolando, if you have a legal way of doing this or anyone else that is reasonably fast I would be willing to pay for the solution.  The new 3.1 routines are too slow.  UIGetScreenImage() works fast enough for our usage and uses little memory but it is part of the private api.  email: delay at pobox dot com if anyone has any code they want to give away or sell that solves this trouble.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hypno_toad</title>
		<link>http://blog.airsource.co.uk/index.php/2008/11/11/views-of-uiimagepickercontroller/comment-page-2/#comment-886</link>
		<dc:creator>hypno_toad</dc:creator>
		<pubDate>Thu, 10 Sep 2009 19:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.airsource.co.uk/?p=258#comment-886</guid>
		<description>Well the new 3.1 OS certainly makes it a lot nicer to change the UI for the UIImagePickerController

OverlayViewController *oController = [[OverlayViewController alloc] initWithNibName:@&quot;OverlayView&quot; bundle:nil];
oController.tabController = self;
self.overlayController = oController;
[oController release];
UIImagePickerController *uip = [[[UIImagePickerController alloc] init] autorelease];
uip.delegate = self;
uip.sourceType = UIImagePickerControllerSourceTypeCamera;
uip.showsCameraControls = NO;
uip.cameraOverlayView = overlayController.view;

Currently trying to use the takePicture method in a timer to feed a barcode reader.  takePicture seems to be taking a picture though it&#039;s a 2MP (3G iPhone for ref), I resize that to 320x480 and feed it to the barcode reader but then it won&#039;t recognize it.  For some reason UIGetScreenImage() works really well though.  I would like to stay away from using that, so any suggestions?</description>
		<content:encoded><![CDATA[<p>Well the new 3.1 OS certainly makes it a lot nicer to change the UI for the UIImagePickerController</p>
<p>OverlayViewController *oController = [[OverlayViewController alloc] initWithNibName:@&#8221;OverlayView&#8221; bundle:nil];<br />
oController.tabController = self;<br />
self.overlayController = oController;<br />
[oController release];<br />
UIImagePickerController *uip = [[[UIImagePickerController alloc] init] autorelease];<br />
uip.delegate = self;<br />
uip.sourceType = UIImagePickerControllerSourceTypeCamera;<br />
uip.showsCameraControls = NO;<br />
uip.cameraOverlayView = overlayController.view;</p>
<p>Currently trying to use the takePicture method in a timer to feed a barcode reader.  takePicture seems to be taking a picture though it&#8217;s a 2MP (3G iPhone for ref), I resize that to 320&#215;480 and feed it to the barcode reader but then it won&#8217;t recognize it.  For some reason UIGetScreenImage() works really well though.  I would like to stay away from using that, so any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

