<?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 for Seaside</title>
	<atom:link href="http://blog.blackwhale.at/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.blackwhale.at</link>
	<description>A weblog by Blackwhale about design, code and random stuff we care about.</description>
	<lastBuildDate>Thu, 29 Jul 2010 01:33:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Custom video/camera overlay view on the iPhone by links for 2010-07-28 &#124; Alones world</title>
		<link>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/comment-page-1/#comment-1257</link>
		<dc:creator>links for 2010-07-28 &#124; Alones world</dc:creator>
		<pubDate>Thu, 29 Jul 2010 01:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=443#comment-1257</guid>
		<description>[...] Custom video/camera overlay view on the iPhone &#124; Seaside (tags: UIImagePicker imagepicker picker camera iphone) [...]</description>
		<content:encoded><![CDATA[<p>[...] Custom video/camera overlay view on the iPhone | Seaside (tags: UIImagePicker imagepicker picker camera iphone) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Create custom activity indicator for your iPhone App by Rajiv </title>
		<link>http://blog.blackwhale.at/2009/09/create-custom-activity-indicator-for-your-iphone-app/comment-page-1/#comment-1252</link>
		<dc:creator>Rajiv </dc:creator>
		<pubDate>Wed, 28 Jul 2010 05:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=336#comment-1252</guid>
		<description>Hi, 
 
Thanks for this great tutorial. I am almost stuck in my app development but you save me. thanks again.   </description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Thanks for this great tutorial. I am almost stuck in my app development but you save me. thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom video/camera overlay view on the iPhone by anka_</title>
		<link>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/comment-page-1/#comment-1225</link>
		<dc:creator>anka_</dc:creator>
		<pubDate>Thu, 22 Jul 2010 14:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=443#comment-1225</guid>
		<description>Hi, 
The UIButton is a subclass of UIControl, so you can use the method addTarget:action:forControlEvents:  &lt;a href=&quot;http://(http://developer.apple.com/iphone/library/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:)&quot; target=&quot;_blank&quot;&gt;(http://developer.apple.com/iphone/library/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:)&lt;/a&gt; to add any action you want. 
 
Example: 
... 
//your close action method 
- (void) close:(id)sender 
{ 
  //just close the modal view 
  [self dismissModalViewControllerAnimated:YES]; 
} 
 
... 
//create your UIButton (i call it closeButton) and add it to your overlay view 
... 
//set target action of you button 
[closeButton addTarget:self action:@selector(close:) forControlEvents:UIControlEventTouchUpInside]; 
.... 
 
After that the method &quot;close&quot; is called when you touch your close button. 
 
Cheers, 
Andreas </description>
		<content:encoded><![CDATA[<p>Hi,<br />
The UIButton is a subclass of UIControl, so you can use the method addTarget:action:forControlEvents:  <a href="http://(http://developer.apple.com/iphone/library/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:)" target="_blank">(</a><a href="http://developer.apple.com/iphone/library/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:" rel="nofollow">http://developer.apple.com/iphone/library/documentation/uikit/reference/UIControl_Class/Reference/Reference.html#//apple_ref/occ/instm/UIControl/addTarget:action:forControlEvents:</a>) to add any action you want. </p>
<p>Example:<br />
&#8230;<br />
//your close action method<br />
- (void) close:(id)sender<br />
{<br />
  //just close the modal view<br />
  [self dismissModalViewControllerAnimated:YES];<br />
} </p>
<p>&#8230;<br />
//create your UIButton (i call it closeButton) and add it to your overlay view<br />
&#8230;<br />
//set target action of you button<br />
[closeButton addTarget:self action:@selector(close:) forControlEvents:UIControlEventTouchUpInside];<br />
&#8230;. </p>
<p>After that the method &quot;close&quot; is called when you touch your close button. </p>
<p>Cheers,<br />
Andreas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom video/camera overlay view on the iPhone by _feDe_</title>
		<link>http://blog.blackwhale.at/2009/10/custom-video-overlay-view-on-the-iphone/comment-page-1/#comment-1224</link>
		<dc:creator>_feDe_</dc:creator>
		<pubDate>Thu, 22 Jul 2010 12:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=443#comment-1224</guid>
		<description>So... how do you actually do something with the button, and then close the modal? </description>
		<content:encoded><![CDATA[<p>So&#8230; how do you actually do something with the button, and then close the modal?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UIToolBar by carnz</title>
		<link>http://blog.blackwhale.at/2010/07/transparent-uitoolbar/comment-page-1/#comment-1192</link>
		<dc:creator>carnz</dc:creator>
		<pubDate>Fri, 16 Jul 2010 16:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=621#comment-1192</guid>
		<description>sorry... forgot the drawRect method </description>
		<content:encoded><![CDATA[<p>sorry&#8230; forgot the drawRect method</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Transparent UIToolBar by carnz</title>
		<link>http://blog.blackwhale.at/2010/07/transparent-uitoolbar/comment-page-1/#comment-1191</link>
		<dc:creator>carnz</dc:creator>
		<pubDate>Fri, 16 Jul 2010 16:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=621#comment-1191</guid>
		<description>Does not work for me 
 
Is this supposed to work in iOS 4? </description>
		<content:encoded><![CDATA[<p>Does not work for me </p>
<p>Is this supposed to work in iOS 4?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multiple UIBarButtonItems in UINavigationBar by theneverstill</title>
		<link>http://blog.blackwhale.at/2009/06/uibuttons-in-uinavigationbar/comment-page-1/#comment-1178</link>
		<dc:creator>theneverstill</dc:creator>
		<pubDate>Fri, 09 Jul 2010 19:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=46#comment-1178</guid>
		<description>I think as long as you don&#039;t overdo it.. it doesn&#039;t.. look.. THAT bad. But honestly, sometimes you need a &#039;+&#039; button as well as an edit button in a sub-table and that blasted back button is taking up the left side of the toolbar. 
 
Regardless, thank you for the great post. </description>
		<content:encoded><![CDATA[<p>I think as long as you don&#039;t overdo it.. it doesn&#039;t.. look.. THAT bad. But honestly, sometimes you need a &#039;+&#039; button as well as an edit button in a sub-table and that blasted back button is taking up the left side of the toolbar. </p>
<p>Regardless, thank you for the great post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UIButton in UITableView Footer by prateek</title>
		<link>http://blog.blackwhale.at/2009/07/uibutton-in-uitableview-footer/comment-page-1/#comment-1167</link>
		<dc:creator>prateek</dc:creator>
		<pubDate>Thu, 08 Jul 2010 10:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=104#comment-1167</guid>
		<description>hi 
button don&#039;t pressed when shown in simulator. plz help </description>
		<content:encoded><![CDATA[<p>hi<br />
button don&#039;t pressed when shown in simulator. plz help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on UIButton in UITableView Footer by dhvidding</title>
		<link>http://blog.blackwhale.at/2009/07/uibutton-in-uitableview-footer/comment-page-1/#comment-1154</link>
		<dc:creator>dhvidding</dc:creator>
		<pubDate>Sat, 03 Jul 2010 01:21:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=104#comment-1154</guid>
		<description>Thanks so much... That was very helpful. </description>
		<content:encoded><![CDATA[<p>Thanks so much&#8230; That was very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Set background image of UITableView by @sponno</title>
		<link>http://blog.blackwhale.at/2009/09/set-background-image-of-uitableview/comment-page-1/#comment-1142</link>
		<dc:creator>@sponno</dc:creator>
		<pubDate>Sun, 27 Jun 2010 06:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.blackwhale.at/?p=368#comment-1142</guid>
		<description>Thanks, work s a treat and really well for iOS4 when the @2x.png graphics are substituted. </description>
		<content:encoded><![CDATA[<p>Thanks, work s a treat and really well for iOS4 when the @2x.png graphics are substituted.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
