<?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>Thu, 06 Oct 2011 11:09:14 +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:Fix &#8220;No architectures to compile&#8221; errorError Starting ExecutableUploading Images To Facebook Wall [...]]]></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/2011/06/27/fix-no-architectures-to-compile-error/" rel="bookmark" class="wherego_title">Fix &#8220;No architectures to compile&#8221; error</a></li><li><a href="http://www.macoscoders.com/2009/06/18/error-starting-executable/" rel="bookmark" class="wherego_title">Error Starting Executable</a></li><li><a href="http://www.macoscoders.com/2010/07/21/uploading-images-to-facebook-wall-using-fbconnect/" rel="bookmark" class="wherego_title">Uploading Images To Facebook Wall Using FBConnect</a></li><li><a href="http://www.macoscoders.com/2010/12/16/terminal-error-could-not-determine-audit-condition/" rel="bookmark" class="wherego_title">Terminal Error : &#8220;Could not determine audit condition&#8221;</a></li><li><a href="http://www.macoscoders.com/2010/06/07/opening-app-review-page-of-app-store/" rel="bookmark" class="wherego_title">Opening App Review Page Of App Store</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>5</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><a href="http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/" rel="bookmark" class="wherego_title">Add Background Image To UIView</a></li><li><a href="http://www.macoscoders.com/2010/08/12/in-app-sms-in-iphone-os-4-0/" rel="bookmark" class="wherego_title">In-App SMS in iPhone OS 4.0</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/05/14/iphone-place-a-uiview-on-top-of-other-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
array(0) {
}

