<?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: UIAlertView without Buttons &#8211; Please Wait Dialog</title>
	<atom:link href="http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html/feed" rel="self" type="application/rss+xml" />
	<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html</link>
	<description>iOS and Objective-C Tips, Tricks and Tutorials.</description>
	<lastBuildDate>Tue, 22 May 2012 11:53:47 -0500</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: John Muchow</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-68798</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Fri, 23 Mar 2012 13:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-68798</guid>
		<description>UIAlert is a modal dialog, so it must be acknowledged by the user.</description>
		<content:encoded><![CDATA[<p>UIAlert is a modal dialog, so it must be acknowledged by the user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manny</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-68791</link>
		<dc:creator>Manny</dc:creator>
		<pubDate>Fri, 23 Mar 2012 10:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-68791</guid>
		<description>Is there a way to stop the UIAlertView and UIProgressIndicator after 3 seconds?</description>
		<content:encoded><![CDATA[<p>Is there a way to stop the UIAlertView and UIProgressIndicator after 3 seconds?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregory Hill</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-65405</link>
		<dc:creator>Gregory Hill</dc:creator>
		<pubDate>Fri, 06 Jan 2012 18:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-65405</guid>
		<description>Is there a way to dismiss the dialog on a delay?  Or, put differently, I&#039;d like to use

[alert performSelector:withObject:afterDelay:]

But withObject: only accepts one object, and dismissWithClickedButtonIndex:animated: demands two.  I&#039;ve run into this problem before with perform:withObject: when there is more than one argument being passed to the selector.

Any hints?

Hmm.  Just had a thought--can I pass an array of objects?  Will performSelector grok it and pull the appropriate data?  Or maybe a dictionary with the individual selectors as keys?  I&#039;ll experiment.</description>
		<content:encoded><![CDATA[<p>Is there a way to dismiss the dialog on a delay?  Or, put differently, I&#8217;d like to use</p>
<p>[alert performSelector:withObject:afterDelay:]</p>
<p>But withObject: only accepts one object, and dismissWithClickedButtonIndex:animated: demands two.  I&#8217;ve run into this problem before with perform:withObject: when there is more than one argument being passed to the selector.</p>
<p>Any hints?</p>
<p>Hmm.  Just had a thought&#8211;can I pass an array of objects?  Will performSelector grok it and pull the appropriate data?  Or maybe a dictionary with the individual selectors as keys?  I&#8217;ll experiment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kandy</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-62750</link>
		<dc:creator>Kandy</dc:creator>
		<pubDate>Tue, 15 Nov 2011 18:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-62750</guid>
		<description>using the alert the user has the impression that the app froze. Since the alert is loaded with a second or two delay and the screen became whiter on the center.
The alert is loaded before reading from the web</description>
		<content:encoded><![CDATA[<p>using the alert the user has the impression that the app froze. Since the alert is loaded with a second or two delay and the screen became whiter on the center.<br />
The alert is loaded before reading from the web</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Muchow</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-60421</link>
		<dc:creator>John Muchow</dc:creator>
		<pubDate>Wed, 21 Sep 2011 17:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-60421</guid>
		<description>To dismiss the alert, you call the method dismissWithClickedButtonIndex of the Alert object and you must provide an index value as a value for the dismissWithClickedButtonIndex  parameter.</description>
		<content:encoded><![CDATA[<p>To dismiss the alert, you call the method dismissWithClickedButtonIndex of the Alert object and you must provide an index value as a value for the dismissWithClickedButtonIndex  parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balaram</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-60384</link>
		<dc:creator>Balaram</dc:creator>
		<pubDate>Tue, 20 Sep 2011 15:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-60384</guid>
		<description>great tip! But I didn&#039;t understand how the &quot;dismissWithClickedButtonIndex&quot; accepts a button Index when there are no buttons in the alertView?</description>
		<content:encoded><![CDATA[<p>great tip! But I didn&#8217;t understand how the &#8220;dismissWithClickedButtonIndex&#8221; accepts a button Index when there are no buttons in the alertView?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim C.</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-59211</link>
		<dc:creator>Tim C.</dc:creator>
		<pubDate>Tue, 30 Aug 2011 14:29:27 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-59211</guid>
		<description>Dude, you rock!  this is exactly what i needed.</description>
		<content:encoded><![CDATA[<p>Dude, you rock!  this is exactly what i needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ammar</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-55752</link>
		<dc:creator>Ammar</dc:creator>
		<pubDate>Fri, 15 Jul 2011 23:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-55752</guid>
		<description>I can&#039;t dismiss the alert from XMLParser delegate method : 

- (void)parserDidEndDocument:(NSXMLParser *)parser { 
	[alert dismissWithClickedButtonIndex:0 animated:YES];
	[tableView reloadData];	
}
the UIAlertView *alert is defined in the header file .</description>
		<content:encoded><![CDATA[<p>I can&#8217;t dismiss the alert from XMLParser delegate method : </p>
<p>- (void)parserDidEndDocument:(NSXMLParser *)parser {<br />
	[alert dismissWithClickedButtonIndex:0 animated:YES];<br />
	[tableView reloadData];<br />
}<br />
the UIAlertView *alert is defined in the header file .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shashank</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-53865</link>
		<dc:creator>Shashank</dc:creator>
		<pubDate>Thu, 23 Jun 2011 11:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-53865</guid>
		<description>Great!! Helped a lot!!</description>
		<content:encoded><![CDATA[<p>Great!! Helped a lot!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Joseph</title>
		<link>http://MobileDeveloperTips.com/user-interface/uialertview-without-buttons-please-wait-dialog.html#comment-51875</link>
		<dc:creator>Sam Joseph</dc:creator>
		<pubDate>Mon, 06 Jun 2011 14:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://iPhoneDeveloperTips.com/?p=5453#comment-51875</guid>
		<description>Just great.  Also wondering if there is a way to set the dialog to be on the screen for a minimum amount of time in case the activity we are undertaking is so short that the user can&#039;t read the message ...</description>
		<content:encoded><![CDATA[<p>Just great.  Also wondering if there is a way to set the dialog to be on the screen for a minimum amount of time in case the activity we are undertaking is so short that the user can&#8217;t read the message &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

