<?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: Cocoa Touch Tutorial: Extract Address Book Address Values on iPhone OS</title>
	<atom:link href="http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/</link>
	<description>Mac tips, iPhone applications, and the like</description>
	<lastBuildDate>Mon, 28 Nov 2011 11:12:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jeff Kelley</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-2394</link>
		<dc:creator>Jeff Kelley</dc:creator>
		<pubDate>Mon, 05 Sep 2011 21:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-2394</guid>
		<description>I have to suggest against doing anything to modify the picker. Introspection of its subviews will work, sure, but Apple is at their leisure to change how that works, reject your application(s) if you mess with it too much, or do something that causes your app to crash when you attempt this.

I’m also not aware of any callbacks that you can use to discover when the picker has finished loading; if you absolutely need to do this, you’re going to have to do some introspection to determine this. Since &lt;code&gt;ABPeoplePickerNavigationController&lt;/code&gt; is a subclass of &lt;code&gt;UINavigationController&lt;/code&gt;, which is itself a subclass of &lt;code&gt;UIViewController&lt;/code&gt;, you can probably use the &lt;code&gt;-isViewLoaded&lt;/code&gt; method to determine if it’s loaded its view yet.

Thanks for the question!</description>
		<content:encoded><![CDATA[<p>I have to suggest against doing anything to modify the picker. Introspection of its subviews will work, sure, but Apple is at their leisure to change how that works, reject your application(s) if you mess with it too much, or do something that causes your app to crash when you attempt this.</p>
<p>I’m also not aware of any callbacks that you can use to discover when the picker has finished loading; if you absolutely need to do this, you’re going to have to do some introspection to determine this. Since <code>ABPeoplePickerNavigationController</code> is a subclass of <code>UINavigationController</code>, which is itself a subclass of <code>UIViewController</code>, you can probably use the <code>-isViewLoaded</code> method to determine if it’s loaded its view yet.</p>
<p>Thanks for the question!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vlad</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-2391</link>
		<dc:creator>Vlad</dc:creator>
		<pubDate>Sun, 04 Sep 2011 19:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-2391</guid>
		<description>Hi,
Thanks for a great article and the blog!

I&#039;m looking for a way to do couple of things with the picker, and hope you will be able to help:
1. When is the best time to call for picker when the view is loaded?
I guess that my options are: viewWillAppear, viewDidAppear and viewDidLoad.
Currently, only the viewDidAppear shows me the picker, but I don&#039;t understand why the other options do not work.
2. How do I know that the picker has finished loading? 
I&#039;m looking for some &quot;hack&quot; where I&#039;m going to get all the subviews of the control, and I need to make sure I do that when the view 100% loaded.

I know this is too much for a simple blog comment, but I&#039;ve been reading all the relevant blogs, articles, documentation... and couldn&#039;t find any answers.

Thanks again,</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for a great article and the blog!</p>
<p>I&#8217;m looking for a way to do couple of things with the picker, and hope you will be able to help:<br />
1. When is the best time to call for picker when the view is loaded?<br />
I guess that my options are: viewWillAppear, viewDidAppear and viewDidLoad.<br />
Currently, only the viewDidAppear shows me the picker, but I don&#8217;t understand why the other options do not work.<br />
2. How do I know that the picker has finished loading?<br />
I&#8217;m looking for some &#8220;hack&#8221; where I&#8217;m going to get all the subviews of the control, and I need to make sure I do that when the view 100% loaded.</p>
<p>I know this is too much for a simple blog comment, but I&#8217;ve been reading all the relevant blogs, articles, documentation&#8230; and couldn&#8217;t find any answers.</p>
<p>Thanks again,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Kelley</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-2293</link>
		<dc:creator>Jeff Kelley</dc:creator>
		<pubDate>Sat, 28 May 2011 20:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-2293</guid>
		<description>Ruben,

	Are you trying to display a contact info sheet and hide everything but addresses? That’s definitely possible. Use an &lt;code&gt;ABPersonViewController&lt;/code&gt; to display the information, and set its &lt;code&gt;displayedProperties&lt;/code&gt; property to the desired fields.</description>
		<content:encoded><![CDATA[<p>Ruben,</p>
<p>	Are you trying to display a contact info sheet and hide everything but addresses? That’s definitely possible. Use an <code>ABPersonViewController</code> to display the information, and set its <code>displayedProperties</code> property to the desired fields.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruben</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-2292</link>
		<dc:creator>Ruben</dc:creator>
		<pubDate>Sat, 28 May 2011 15:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-2292</guid>
		<description>Can anyone help me?

I just only need the addresses fields to be in the contact info, and hide the all other fields, is it possible?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Can anyone help me?</p>
<p>I just only need the addresses fields to be in the contact info, and hide the all other fields, is it possible?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manjit Bedi</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-2276</link>
		<dc:creator>Manjit Bedi</dc:creator>
		<pubDate>Thu, 14 Apr 2011 18:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-2276</guid>
		<description>Your code example has been very helpful - saved me buckets of time trawling through the documentation.</description>
		<content:encoded><![CDATA[<p>Your code example has been very helpful &#8211; saved me buckets of time trawling through the documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phoney</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-1321</link>
		<dc:creator>Phoney</dc:creator>
		<pubDate>Tue, 17 Aug 2010 19:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-1321</guid>
		<description>Yeah, I thought as much. Ho-Hum...</description>
		<content:encoded><![CDATA[<p>Yeah, I thought as much. Ho-Hum&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Kelley</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-1307</link>
		<dc:creator>Jeff Kelley</dc:creator>
		<pubDate>Tue, 17 Aug 2010 01:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-1307</guid>
		<description>Phoney,

    I don&#039;t think that the UI is designed to be subclassed; you&#039;d have to create something from scratch.</description>
		<content:encoded><![CDATA[<p>Phoney,</p>
<p>    I don&#8217;t think that the UI is designed to be subclassed; you&#8217;d have to create something from scratch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phoney</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-1300</link>
		<dc:creator>Phoney</dc:creator>
		<pubDate>Mon, 16 Aug 2010 18:54:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-1300</guid>
		<description>Hey Jeff,

Is it possible to change anything in the AddressBookUI?
I am looking to capture elements from the standard UI along with some custom fields and I want to extend the UI to achieve this.
Do you know if this is possible or will I need to create my own from scratch?

/Phoney</description>
		<content:encoded><![CDATA[<p>Hey Jeff,</p>
<p>Is it possible to change anything in the AddressBookUI?<br />
I am looking to capture elements from the standard UI along with some custom fields and I want to extend the UI to achieve this.<br />
Do you know if this is possible or will I need to create my own from scratch?</p>
<p>/Phoney</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Kelley</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-1234</link>
		<dc:creator>Jeff Kelley</dc:creator>
		<pubDate>Thu, 12 Aug 2010 02:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-1234</guid>
		<description>You’re welcome!</description>
		<content:encoded><![CDATA[<p>You’re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MadProfit</title>
		<link>http://blog.slaunchaman.com/2009/01/21/cocoa-touch-tutorial-extract-address-book-address-values-on-iphone-os/comment-page-1/#comment-1228</link>
		<dc:creator>MadProfit</dc:creator>
		<pubDate>Wed, 11 Aug 2010 16:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.slaunchaman.com/?p=164#comment-1228</guid>
		<description>I want to really thank you for this blog.  I have spent 3 days researching as a newbie how to do something like this without writing a lot of code like some of the books suggest (view controllers, arrays, etc)  I adopted your code to essentially pull the email address and in the same method get the phone if it isn&#039;t null.

Thanks a lot from the real newbie.</description>
		<content:encoded><![CDATA[<p>I want to really thank you for this blog.  I have spent 3 days researching as a newbie how to do something like this without writing a lot of code like some of the books suggest (view controllers, arrays, etc)  I adopted your code to essentially pull the email address and in the same method get the phone if it isn&#8217;t null.</p>
<p>Thanks a lot from the real newbie.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

