<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MacOSCoders &#187; UIView</title>
	<atom:link href="http://www.macoscoders.com/tag/uiview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.macoscoders.com</link>
	<description>My blog to talk on iPhone, Mac OS, Adobe Flex, AIR...</description>
	<lastBuildDate>Mon, 16 Aug 2010 10:45:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add Background Image To UIView</title>
		<link>http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/</link>
		<comments>http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 16:20:43 +0000</pubDate>
		<dc:creator>Anish Kumar</dc:creator>
				<category><![CDATA[iPhone Applications]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[backgroundColor]]></category>
		<category><![CDATA[imageNamed]]></category>
		<category><![CDATA[initWithPatternImage]]></category>
		<category><![CDATA[UIColor]]></category>
		<category><![CDATA[UIImage]]></category>
		<category><![CDATA[UIView]]></category>
		<category><![CDATA[viewDidLoad]]></category>

		<guid isPermaLink="false">http://www.macoscoders.com/?p=262</guid>
		<description><![CDATA[If you ever need to add a image as background for an UIView then do it like this (Make sure the image is in your app&#8217;s resource bundle):-
- (void)viewDidLoad
{
    self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"MyBackground.png"]];
}
Readers who viewed this page, also viewed:How to set badge value of an TabBar ItemiPhone Apple Push Notification [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever need to add a image as background for an UIView then do it like this (Make sure the image is in your app&#8217;s resource bundle):-</p>
<pre style="padding-left: 30px;">- (void)viewDidLoad
{
    self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"MyBackground.png"]];
}</pre>
<div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li><a href="http://www.macoscoders.com/2009/05/19/how-to-set-badge-value-of-an-tabbar-item/" rel="bookmark" class="wherego_title">How to set badge value of an TabBar Item</a></li><li><a href="http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/" rel="bookmark" class="wherego_title">iPhone Apple Push Notification Service (APNS)</a></li><li><a href="http://www.macoscoders.com/2009/06/23/error-no-valid-aps-environment-entitlement-string-found-for-application/" rel="bookmark" class="wherego_title">Error: &#8220;no valid &#8216;aps-environment&#8217; entitlement string found for application&#8221;</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhone: Place A UIView On Top Of Other Views</title>
		<link>http://www.macoscoders.com/2009/05/14/iphone-place-a-uiview-on-top-of-other-views/</link>
		<comments>http://www.macoscoders.com/2009/05/14/iphone-place-a-uiview-on-top-of-other-views/#comments</comments>
		<pubDate>Thu, 14 May 2009 09:59:45 +0000</pubDate>
		<dc:creator>Anish Kumar</dc:creator>
				<category><![CDATA[iPhone Applications]]></category>
		<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[IPhone]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[UIView]]></category>
		<category><![CDATA[zPosition]]></category>

		<guid isPermaLink="false">http://www.macoscoders.com/?p=178</guid>
		<description><![CDATA[There might be need at several stages of iPhone application development to insert a new view on top of other views. This can be achieved by setting the zPosition value of the view in question. If a View has a zPosition that is bigger than another views zPosition it will appear on top of the [...]]]></description>
			<content:encoded><![CDATA[<p>There might be need at several stages of iPhone application development to insert a new view on top of other views. This can be achieved by setting the zPosition value of the view in question. If a View has a zPosition that is bigger than another views zPosition it will appear on top of the other view.</p>
<p style="padding-left: 30px;"><span id="more-178"></span>UIView *myView = [[UIView alloc] init];<br />
myView.layer.zPosition = X;</p>
<div id="wherego_related"><h3>Readers who viewed this page, also viewed:</h3><ul><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/where-did-they-go-from-here/">Where did they go from here?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.macoscoders.com/2009/05/14/iphone-place-a-uiview-on-top-of-other-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
