<?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: How to popup a UIPickerView from the bottom of a UIScrollView in response to UITextField selection</title>
	<atom:link href="http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/</link>
	<description>Getting computers to do stuff so we don&#039;t have too</description>
	<lastBuildDate>Tue, 17 Jan 2012 22:29:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Echilon</title>
		<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/comment-page-1/#comment-3506</link>
		<dc:creator>Echilon</dc:creator>
		<pubDate>Sun, 15 May 2011 13:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=53#comment-3506</guid>
		<description>Thanks for the info. A code sample would go a long way here.</description>
		<content:encoded><![CDATA[<p>Thanks for the info. A code sample would go a long way here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/comment-page-1/#comment-3460</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Thu, 10 Feb 2011 13:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=53#comment-3460</guid>
		<description>do u have a complete sample code</description>
		<content:encoded><![CDATA[<p>do u have a complete sample code</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jixx</title>
		<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/comment-page-1/#comment-3323</link>
		<dc:creator>jixx</dc:creator>
		<pubDate>Mon, 16 Aug 2010 20:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=53#comment-3323</guid>
		<description>to use this solution in iPad as well, just correct the Rect of the Picker: 

// Add the picker
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,185,0,0)];

to

// Add the picker
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,185,320,216)];


best regards &amp; thanks</description>
		<content:encoded><![CDATA[<p>to use this solution in iPad as well, just correct the Rect of the Picker: </p>
<p>// Add the picker<br />
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,185,0,0)];</p>
<p>to</p>
<p>// Add the picker<br />
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:CGRectMake(0,185,320,216)];</p>
<p>best regards &amp; thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/comment-page-1/#comment-3123</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Mon, 24 May 2010 07:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=53#comment-3123</guid>
		<description>If anyone wants a fully functional reusable PickerControl that pops up and goes away with a combo box widget for your UITextFields  that you can configure easily in IB email me at servertoodATgmail.com.

You dont have to write any code just implement a protocol to get the data by a key.</description>
		<content:encoded><![CDATA[<p>If anyone wants a fully functional reusable PickerControl that pops up and goes away with a combo box widget for your UITextFields  that you can configure easily in IB email me at servertoodATgmail.com.</p>
<p>You dont have to write any code just implement a protocol to get the data by a key.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Veltema</title>
		<link>http://www.wetware.co.nz/2009/02/how-to-popup-a-uipickerview-from-the-bottom-of-a-uiscrollview-in-response-to-uitextfield-selection/comment-page-1/#comment-2795</link>
		<dc:creator>Steven Veltema</dc:creator>
		<pubDate>Tue, 19 Jan 2010 02:28:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.wetware.co.nz/blog/?p=53#comment-2795</guid>
		<description>I know this is old, but as a side note this can introduce a bug if the ActionSheet is dismissed while the picker is still animating the selection.  The user will think that they have finished the selection but didSelectRow will not have been called before the ActionSheet dismissal.  This can create problems if the UIPickerViewDelegate didSelectRow and the UIActionSheetDelegate willDismissWithButtonIndex both operate on the same property.  I got hit with this and it took me a while to figure out what was going on.</description>
		<content:encoded><![CDATA[<p>I know this is old, but as a side note this can introduce a bug if the ActionSheet is dismissed while the picker is still animating the selection.  The user will think that they have finished the selection but didSelectRow will not have been called before the ActionSheet dismissal.  This can create problems if the UIPickerViewDelegate didSelectRow and the UIActionSheetDelegate willDismissWithButtonIndex both operate on the same property.  I got hit with this and it took me a while to figure out what was going on.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

