<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Infopitcher</title>
	
	<link>http://www.infopitcher.com</link>
	<description>Jquery Tutorials, CMS  Tutorials, CSS  Tutorials, HTML  Tutorials</description>
	<lastBuildDate>Tue, 21 May 2013 15:47:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/infopitcher" /><feedburner:info uri="infopitcher" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Create a Subfolder of document directory in iPhone Application</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/iilFiE5bxFE/</link>
		<comments>http://www.infopitcher.com/2013/05/create-a-subfolder-of-document-directory-in-iphone-application/#comments</comments>
		<pubDate>Tue, 21 May 2013 15:47:40 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1417</guid>
		<description><![CDATA[For those who want to Create a Sub-folder of  document directory  in iPhone applications, this post will be very helpful .you can do this within few lines of code. Below enclosed code will help you create sub folder: NSString* documentsPath = NSSearchPathForDirectoriesInDomains [...]]]></description>
				<content:encoded><![CDATA[<p>For those who want to Create a<strong> Sub-folder of  document directory</strong>  in iPhone applications, this post will be very helpful .you can do this within few lines of code.<br />
<code></code></p>
<div id="attachment_1427" class="wp-caption alignnone" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/Create-a-Subfolder-of-document-directory-in-iPhone-Application.jpg"><img class="size-full wp-image-1427 " title="Create a Subfolder of document directory in iPhone Application" alt="Create a Subfolder of document directory in iPhone Application" src="http://www.infopitcher.com/wp-content/uploads/2013/05/Create-a-Subfolder-of-document-directory-in-iPhone-Application.jpg" width="550" height="211" /></a><p class="wp-caption-text">Create a Subfolder of document directory in iPhone Application</p></div>
<p><span id="more-1417"></span>Below enclosed code will help you create sub folder:</p>
<div class="code">NSString* documentsPath = NSSearchPathForDirectoriesInDomains<br />
(NSDocumentDirectory,NSUserDomainMask,YES)<code>objectAtIndex:0];<br />
NSString *folder = [documentsPath stringByAppendingPathComponent:@"foldername"];<br />
NSFileManager *fileManager = [NSFileManager defaultManager];<br />
NSError *error = nil;<br />
if (![fileManager fileExistsAtPath:folder])<br />
{<br />
[fileManager createDirectoryAtPath:folder withIntermediateDirectories:YES attributes:nil error:&amp;error];<br />
} </code></div>
<p>In above lines.T<code>he first line will held to <strong>find document directory</strong>,the second line to held create <strong>sub-folder directory</strong>,thereafter we want check if folder is already exits or not,if not to create a folder with help of </code><strong><code>createDirectoryAtPath:folder</code></strong><em id="__mceDel"><em id="__mceDel"><em id="__mceDel"><code> method. </code></em></em></em></p>
<p><code> now Run your code and enjoy, if you have any feedback please comment below.</code><em id="__mceDel"><em id="__mceDel"><em id="__mceDel"><code> </code></em></em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/05/create-a-subfolder-of-document-directory-in-iphone-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/05/create-a-subfolder-of-document-directory-in-iphone-application/</feedburner:origLink></item>
		<item>
		<title>UIView Animation in iPhone</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/Le0kKWUMXrw/</link>
		<comments>http://www.infopitcher.com/2013/05/uiview-animation-in-iphone/#comments</comments>
		<pubDate>Wed, 01 May 2013 17:52:48 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[ViewAnimation]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1358</guid>
		<description><![CDATA[For those who want to make animation between views in iPhone application, this post will be very helpful .you can do this within few lines of code. Before do this you should know how to develop iPhone application and how [...]]]></description>
				<content:encoded><![CDATA[<p>For those who want to make <strong>animation between views</strong> in iPhone application, this post will be very helpful .you can do this within few lines of code. Before do this you should know how to <strong>develop iPhone application</strong> and how to <strong>push one view controller into another view controller</strong>.</p>
<div id="attachment_1402" class="wp-caption alignnone" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/UIView-Animation-in-iPhone.jpg"><img class="size-full wp-image-1402 " title="UIView Animation in iPhone" alt="UIView Animation in iPhone" src="http://www.infopitcher.com/wp-content/uploads/2013/05/UIView-Animation-in-iPhone.jpg" width="550" height="211" /></a><p class="wp-caption-text">UIView Animation in iPhone</p></div>
<p><span id="more-1358"></span><br />
if you don&#8217;t know how to develop an iPhone application, then please follow this post &#8220;<a href="http://www.infopitcher.com/2013/05/move-one-viewcontroller-into-another-viewcontroller-in-iphone/">http://www.infopitcher.com/2013/05/move-one-viewcontroller-into-another-viewcontroller-in-iphone/</a>&#8220;.</p>
<div class="clearfix"><a class="download-script" href="http://infopitcher.com/downloads/UIViewAnimation.zip" target="_blank">DownloadSampleProject</a></div>
<h3>The UIView animation have four types</h3>
<p>1.UIViewAnimationTransitionFlipFromLeft<br />
2.UIViewAnimationTransitionFlipFromRight<br />
3.UIViewAnimationTransitionFlipCurlUp<br />
4.UIViewAnimationTransitionFlipCurlDown</p>
<p>Below is the code to do animation :</p>
<div class="code">[UIView beginAnimations:nil context:NULL];<br />
[UIView setAnimationDuration:2];<br />
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];<br />
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown<br />
forView:self.navigationController.view cache:NO];<br />
[UIView commitAnimation];</div>
<p>Here you can push your next ViewController in above <strong>setAnimationTransition property</strong>.</p>
<p>For Example:</p>
<div class="code">SecondViewController *svc = [[SecondViewController alloc]initWithNibName:@” SecondViewController” bundle:nil];<br />
[UIView beginAnimations:nil context:NULL];<br />
[UIView setAnimationDuration:2];<br />
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];<br />
[self.NavigationController pushViewController:svc animation:YES];<br />
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown];<br />
forView:self.navigationController.view cache:NO];<br />
[UIView commitAnimation];</div>
<p>Here you can apply which type of animation you need, set in <strong>setAnimationTransition property</strong>.</p>
<p>Run and enjoy with coding, if you have any feedback please comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/05/uiview-animation-in-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/05/uiview-animation-in-iphone/</feedburner:origLink></item>
		<item>
		<title>Simple image gallery hover effects with CSS3 @keyframes and filters</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/9qgH8-GW8Dk/</link>
		<comments>http://www.infopitcher.com/2013/05/simple-image-gallery-hover-effects-with-css3-keyframes-and-filters/#comments</comments>
		<pubDate>Wed, 01 May 2013 16:45:48 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[@keyframes]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Filter]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1340</guid>
		<description><![CDATA[Here we are going to see about creating a Simple image gallery hover effects with CSS3 @keyframes and filters. By simply applying a handful of CSS3 properties, we’re now able to create image gallery hover effects with minimal CSS coding. [...]]]></description>
				<content:encoded><![CDATA[<p>Here we are going to see about creating a Simple image gallery hover effects with <strong>CSS3 @keyframes</strong> and <strong>filters</strong>. By simply applying a handful of <strong>CSS3</strong> properties, we’re now able to create image gallery hover effects with minimal <strong>CSS</strong> coding. This kind of effect you have seen before using flash or JavaScript now do it with css and enjoy. Use it and make something better for your project or website.</p>
<div id="attachment_1365" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/Simple-image-gallery-hover-effects-with-CSS3-@keyframes-and-filters.jpg"><img class="size-full wp-image-1365" alt="Simple image gallery hover effects with CSS3 @keyframes and filters" src="http://www.infopitcher.com/wp-content/uploads/2013/05/Simple-image-gallery-hover-effects-with-CSS3-@keyframes-and-filters.jpg" width="550" height="211" /></a><p class="wp-caption-text">Simple image gallery hover effects with CSS3 @keyframes and filters</p></div>
<p><span id="more-1340"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/Simple-image-gallery-hover-effects-with-CSS3-@keyframes-and-filters/" target="_blank">Demo</a><a class="download-script" href="http://www.infopitcher.com/downloads/Simple-image-gallery-hover-effects-with-CSS3-@keyframes-and-filters.zip" target="_blank">Download</a></div>
<h4>CSS code</h4>
<p>Here is the <strong>CSS</strong> code used  to get hover effect  using <strong>CSS3 @keyframe </strong>and<strong> filters</strong>. I have just moved the position of title and sub title using <strong>CSS3 @keyframes </strong>and then just changed image luminosity(black and white) to its original(color image) using <strong>CSS3 filters.</strong> you can see that in the below code,</p>
<div class="code">
<p>.gallery{<br />
width:930px;<br />
position:relative;<br />
margin:80px auto 0 auto;<br />
}<br />
.gallery li{<br />
float:left;<br />
width:300px;<br />
height:270px;<br />
margin:5px;<br />
}<br />
.gallery li a{<br />
display:block;<br />
overflow:hidden;<br />
height:100%;<br />
width:100%;<br />
position:relative;<br />
-moz-box-shadow:1px 1px 2px #ddd;/* firefox */<br />
-webkit-box-shadow:1px 1px 2px #ddd;/* Safari and Chrome */<br />
box-shadow:1px 1px 2px #ddd;<br />
background:#ddd;<br />
}<br />
.gallery li a:hover{<br />
background:#ffdd3f;<br />
}<br />
.gallery li a h2{<br />
color:#000;<br />
font-family: &#8216;Wire One&#8217;, arial, serif;<br />
font-size:32px;<br />
font-weight:bold;<br />
text-transform:uppercase;<br />
position:absolute;<br />
padding:10px;<br />
width:100%;<br />
top:170px;<br />
left:0px;<br />
text-shadow: 0px 1px 1px black;<br />
}<br />
.gallery li a h3{<br />
color:#000;<br />
font-family: arial, serif;<br />
font-size:14px;<br />
font-weight:normal;<br />
position:absolute;<br />
padding:10px;<br />
width:100%;<br />
top:210px;<br />
left:0px;<br />
line-height: 20px;<br />
}<br />
.gallery li a span{<br />
width:25px;<br />
height:25px;<br />
position:absolute;<br />
background-position:top left;<br />
background-repeat:no-repeat;<br />
background-color:transparent;<br />
left:350px;<br />
top:200px;<br />
background-image:url(arrow.png);<br />
}<br />
li:hover h2{<br />
-moz-animation:animation1 .30s linear ; /* firefox */<br />
-webkit-animation:animation1 .30s linear ;/* Safari and Chrome */<br />
}<br />
li:hover h3{<br />
-moz-animation:animation2 .30s linear ; /* firefox */<br />
-webkit-animation:animation2 .30s linear ;/* Safari and Chrome */<br />
}<br />
@keyframes animation1 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
@keyframes animation2 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
/* firefox */<br />
@-moz-keyframes animation1 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
@-moz-keyframes animation2 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
/* Safari and Chrome */<br />
@-webkit-keyframes animation1 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
@-webkit-keyframes animation2 {<br />
0% {margin-left:-180px;}<br />
100%{ margin-left:0px; }<br />
}<br />
.grayscale {<br />
filter: url(&#8220;data:image/svg+xml;utf8,&lt;svg xmlns=\&#8217;http://www.w3.org/2000/svg\&#8217;&gt;&lt;filter id=\&#8217;grayscale\&#8217;&gt;&lt;feColorMatrix type=\&#8217;matrix\&#8217; values=\&#8217;0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\&#8217;/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&#8221;); /* Firefox 10+ */<br />
filter: gray; /* IE6-9 */<br />
-webkit-filter: grayscale(100%); /* Chrome 19+ &amp; Safari 6+*/<br />
-webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */<br />
-webkit-backface-visibility: hidden; /* Fix for transition flickering */<br />
opacity: 0.9;<br />
}<br />
.gallery li:hover .grayscale {<br />
filter: url(&#8220;data:image/svg+xml;utf8,&lt;svg xmlns=\&#8217;http://www.w3.org/2000/svg\&#8217;&gt;&lt;filter id=\&#8217;grayscale\&#8217;&gt;&lt;feColorMatrix type=\&#8217;matrix\&#8217; values=\&#8217;1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\&#8217;/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&#8221;);<br />
-webkit-filter: grayscale(0%);<br />
}</p>
</div>
<h4>HTML Code</h4>
<p>Below is the HTML code used in our example</p>
<div class="code">
<p>&lt;ul class=&#8221;gallery&#8221;&gt;<br />
&lt;li class=&#8221;home&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;1.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;</p>
<p>&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;about&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;2.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;service&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;3.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;home&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;4.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;about&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;5.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;service&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;img class=&#8221;grayscale&#8221; src=&#8221;6.jpg&#8221; /&gt;<br />
&lt;h2&gt;Magna sed lorem&lt;/h2&gt;<br />
&lt;h3&gt;Lorem Ipsum is simply dummy text of the printing and typesetting industry.&lt;/h3&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;</p>
</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/05/simple-image-gallery-hover-effects-with-css3-keyframes-and-filters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/05/simple-image-gallery-hover-effects-with-css3-keyframes-and-filters/</feedburner:origLink></item>
		<item>
		<title>Move One ViewController into Another ViewController in iPhone</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/3zZAF5vz6dY/</link>
		<comments>http://www.infopitcher.com/2013/05/move-one-viewcontroller-into-another-viewcontroller-in-iphone/#comments</comments>
		<pubDate>Wed, 01 May 2013 16:39:58 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Move ViewControllers]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1347</guid>
		<description><![CDATA[In this post I would like to explain, how to move one ViewController into another ViewController in iphone application. It’s very basic and important in iPhone application development. There are only few steps to do this. DownloadSampleProject Step 1: Create [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I would like to explain, how to move one ViewController into another ViewController in iphone application. It’s very basic and important in iPhone application development. There are only few steps to do this.</p>
<div id="attachment_1360" class="wp-caption alignnone" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/moving-between-views.jpg"><img class="size-full wp-image-1360" title="Move One ViewController into Another ViewController in iPhone" alt="Move One ViewController into Another ViewController in iPhone" src="http://www.infopitcher.com/wp-content/uploads/2013/05/moving-between-views.jpg" width="550" height="211" /></a><p class="wp-caption-text">Move One ViewController into Another ViewController in iPhone</p></div>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/moving-between-views.jpg"><span id="more-1347"></span></a><br />
<!--more--></p>
<div class="clearfix"><a class="download-script" href="http://www.infopitcher.com/downloads/ClassToClassMoving.zip" target="_blank">DownloadSampleProject</a></div>
<h4>Step 1:</h4>
<p>Create New Project and Give Project name.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image002.jpg"><img class="alignnone size-full wp-image-1350" alt="clip_image002" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image002.jpg" width="471" height="318" /></a></p>
<h4>Step 2:</h4>
<p>Create NewViewController and give name as “FirstViewController”.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image003.jpg"><img class="alignnone size-full wp-image-1351" alt="clip_image003" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image003.jpg" width="479" height="325" /></a></p>
<h4>Step 3:</h4>
<p>Then do the same way to Create another viewController name as “SecoundViewController”, thereafter your project structure is like below.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image004.jpg"><img class="alignnone size-full wp-image-1352" alt="clip_image004" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image004.jpg" width="498" height="339" /></a></p>
<h4>Step 4:</h4>
<p>Create Three buttons and IBAction for that in FirstViewController and give button name as push, pop and model.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image005.jpg"><img class="alignnone size-full wp-image-1353" alt="clip_image005" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image005.jpg" width="533" height="362" /></a></p>
<h4>Step 5:</h4>
<p>Here we implement our concept. In IOS there are three default methods are available.</p>
<p>1. PushViewController</p>
<p>2. PopToViewController</p>
<p>3. PresentViewController</p>
<p>Then call the method like below.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image006.jpg"><img class="alignnone size-full wp-image-1354" alt="clip_image006" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image006.jpg" width="511" height="345" /></a></p>
<h4>Step 6:</h4>
<p>Now Run your code and you will get below as output.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image007.jpg"><img class="alignnone size-full wp-image-1349" alt="clip_image007" src="http://www.infopitcher.com/wp-content/uploads/2013/05/clip_image007.jpg" width="508" height="345" /></a></p>
<h4>Step 7:</h4>
<p>Enjoy with coding, if you have any feedback please post your comment.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/05/move-one-viewcontroller-into-another-viewcontroller-in-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/05/move-one-viewcontroller-into-another-viewcontroller-in-iphone/</feedburner:origLink></item>
		<item>
		<title>Animated Text and Icon Menu with CSS3 @keyframes</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/OyXk58LqamA/</link>
		<comments>http://www.infopitcher.com/2013/04/animated-text-and-icon-menu-with-css3-keyframes/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 08:27:40 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[@keyframes]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Menu]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1296</guid>
		<description><![CDATA[CSS3 @keyframes is one of famous property of CSS and its mainly used for animation, so here In this post I am going to show you how to create an  animated navigation menu using CSS3 @keyframe property.This kind of effect you [...]]]></description>
				<content:encoded><![CDATA[<p>CSS3 @keyframes is one of famous property of CSS and its mainly used for animation, so here In this post I am going to show you how to create an  animated navigation menu using <strong>CSS3 @keyframe</strong> property.This kind of effect you have seen before using flash or JavaScript. Use it and make some thing better for your Navigation menu.</p>
<div id="attachment_1333" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Animated-Text-and-Icon-Menu-with-CSS3-@keyframes.jpg"><img class="size-full wp-image-1333" alt="Animated Text and Icon Menu with CSS3 @keyframes" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Animated-Text-and-Icon-Menu-with-CSS3-@keyframes.jpg" width="550" height="211" /></a><p class="wp-caption-text">Animated Text and Icon Menu with CSS3 @keyframes</p></div>
<p><span id="more-1296"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/Animated-Text-and-Icon-Menu-with-CSS3-@keyframes/" target="_blank">Demo</a><a class="download-script" href="http://www.infopitcher.com/downloads/Animated-Text-and-Icon-Menu-with-CSS3-@keyframes.zip" target="_blank">Download</a></div>
<h4>CSS code</h4>
<p>Here is the <strong>CSS</strong> code used  to get hover effect  using <strong>CSS3 @keyframe</strong>. I have just moved the position of the element using <strong>CSS3 @keyframes </strong>you can see that in the below code,</p>
<div class="code">.menu{<br />
width:1010px;<br />
position:relative;<br />
margin:80px auto 0 auto;<br />
}<br />
.menu li{<br />
float:left;<br />
width:200px;<br />
height:200px;<br />
margin:1px;<br />
}<br />
.menu li a{<br />
display:block;<br />
overflow:hidden;<br />
background:#fff;<br />
text-align:center;<br />
height:100%;<br />
width:100%;<br />
position:relative;<br />
-moz-box-shadow:1px 1px 2px #ddd;/* firefox */<br />
-webkit-box-shadow:1px 1px 2px #ddd;/* Safari and Chrome */<br />
box-shadow:1px 1px 2px #ddd;<br />
}<br />
.menu li.home a:hover{<br />
background:#37c5e9;<br />
}<br />
.menu li.about a:hover{<br />
background:#ff395e;<br />
}<br />
.menu li.service a:hover{<br />
background:#57e676;<br />
}<br />
.menu li.portfolio a:hover{<br />
background:#d869b2;<br />
}<br />
.menu li.contact a:hover{<br />
background:#ffdd3f;<br />
}<br />
.menu li a h2{<br />
color:#000;<br />
font-family: &#8216;Wire One&#8217;, arial, serif;<br />
font-size:42px;<br />
font-weight:bold;<br />
text-transform:uppercase;<br />
position:absolute;<br />
padding:10px;<br />
width:180px;<br />
top:130px;<br />
left:0px;<br />
text-shadow: 0px 1px 1px black;<br />
}<br />
.menu li a span{<br />
width:100px;<br />
height:100px;<br />
position:absolute;<br />
background-position:top left;<br />
background-repeat:no-repeat;<br />
background-color:transparent;<br />
left:50px;<br />
top:20px;<br />
}<br />
.home a span{<br />
background-image:url(home.png);<br />
}<br />
.about a span{<br />
background-image:url(about.png);<br />
}<br />
.service a span{<br />
background-image:url(service.png);<br />
}<br />
.portfolio a span{<br />
background-image:url(portfolio.png);<br />
}<br />
.contact a span{<br />
background-image:url(contact.png);<br />
}<br />
li:hover h2{<br />
-moz-animation:cycle .30s linear;/* firefox */<br />
-webkit-animation:cycle .30s linear;/* Safari and Chrome */<br />
}<br />
li:hover span{<br />
-moz-animation:cycle2 .60s linear;/* firefox */<br />
-webkit-animation:cycle2 .60s linear;/* Safari and Chrome */<br />
}<br />
@keyframes cycle {<br />
0% {margin-top:-180px;}<br />
100%{ margin-top:0px; }<br />
}<br />
@keyframes cycle2 {<br />
0% {margin-top:-180px;}<br />
50% {margin-top:10px;}<br />
75% {margin-top:-15px;}<br />
100%{ margin-top:0px; }<br />
}<br />
/* firefox */<br />
@-moz-keyframes cycle {<br />
0% {margin-top:-180px;}<br />
100%{ margin-top:0px; }<br />
}<br />
@-moz-keyframes cycle2 {<br />
0% {margin-top:-180px;}<br />
50% {margin-top:10px;}<br />
75% {margin-top:-15px;}<br />
100%{ margin-top:0px; }<br />
}<br />
/* Safari and Chrome */<br />
@-webkit-keyframes cycle {<br />
0% {margin-top:-180px;}<br />
100%{ margin-top:0px; }<br />
}<br />
@-webkit-keyframes cycle2 {<br />
0% {margin-top:-180px;}<br />
50% {margin-top:10px;}<br />
75% {margin-top:-15px;}<br />
100%{ margin-top:0px; }<br />
}</div>
<h4>HTML Code</h4>
<p>Below is the HTML code used in our example</p>
<div class="code">&lt;ul class=&#8221;menu&#8221;&gt;<br />
&lt;li class=&#8221;home&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;h2&gt;Home&lt;/h2&gt;<br />
&lt;span&gt;&lt;/span&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;about&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;h2&gt;About&lt;/h2&gt;<br />
&lt;span&gt;&lt;/span&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;service&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;h2&gt;Service&lt;/h2&gt;<br />
&lt;span&gt;&lt;/span&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;portfolio&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;h2&gt;Clients&lt;/h2&gt;<br />
&lt;span&gt;&lt;/span&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;li class=&#8221;contact&#8221;&gt;<br />
&lt;a href=&#8221;#&#8221;&gt;<br />
&lt;h2&gt;Contact&lt;/h2&gt;<br />
&lt;span&gt;&lt;/span&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
&lt;/ul&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/animated-text-and-icon-menu-with-css3-keyframes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/animated-text-and-icon-menu-with-css3-keyframes/</feedburner:origLink></item>
		<item>
		<title>Categories in Objective-c to create iPhone Application</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/1plVsNF7RVI/</link>
		<comments>http://www.infopitcher.com/2013/04/categories-in-objective-c-to-create-iphone-application/#comments</comments>
		<pubDate>Wed, 24 Apr 2013 17:39:36 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Category]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Objective-c]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1275</guid>
		<description><![CDATA[In this post I would like to explain how to use Categories in iPhone application development. The category is very important property in Objective-c, because you can easily add new method on exiting class without knowing the exiting class code [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I would like to explain how to use<strong> Categories</strong> in iPhone application development. The category is very important property in Objective-c, because you can easily add new method on exiting class <strong>without knowing the exiting class code</strong> and more important thing is you no need to create any <strong>Object or NSObject subclass</strong> for accessing new method.</p>
<p><span id="more-1275"></span></p>
<div class="clearfix"><a class="download-script" href="http://www.infopitcher.com/downloads/sample project.zip" target="_blank">Download Sample Project</a></div>
<p>Note:This Post is for only already created projects, if you want to know how to develop a new iPhone Application, please look at this post <a href="http://www.infopitcher.com/2013/04/develop-an-iphone-application-using-xcode/">http://www.infopitcher.com/2013/04/develop-an-iphone-application-using-xcode/</a></p>
<h4>Step 1:</h4>
<p>Right click any class file from your project and <strong>select Objective-c category</strong> from popup menu window</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.03.26-PM.png"><img class="alignnone size-full wp-image-1280" alt="Screen Shot 2013-04-18 at 3.03.26 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.03.26-PM.png" width="1398" height="947" /></a></p>
<h4>Step 2:</h4>
<p>Give Category name as “ <strong>RemoveSpace</strong>”and select Category on type as “<strong>NSString</strong>”.</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.04.20-PM.png"><img class="alignnone size-full wp-image-1281" alt="Screen Shot 2013-04-18 at 3.04.20 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.04.20-PM.png" width="1399" height="948" /></a></p>
<h4>Step 3:</h4>
<p>Your <strong>Project structure</strong> will look like below</p>
<p><img class="alignnone size-full wp-image-1282" alt="Screen Shot 2013-04-18 at 3.04.38 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.04.38-PM.png" width="1401" height="949" /></p>
<h4>Step 4:</h4>
<p>Select “NSString+RemoveSpace.h” and create a <strong>new method</strong> in the class. Now it’s look like below</p>
<p><img class="alignnone size-full wp-image-1285" alt="Screen Shot 2013-04-18 at 3.12.58 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.12.58-PM.png" width="1399" height="949" /></p>
<h4>Step 5:</h4>
<p>Select “<strong>NSString+RemoveSpace.m</strong>” then type code in the class .Thereafter your class is looking like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.13.09-PM.png"><img class="alignnone size-full wp-image-1286" alt="Screen Shot 2013-04-18 at 3.13.09 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.13.09-PM.png" width="1400" height="949" /></a></p>
<h4>Step 6:</h4>
<p>After Add below line in Exiting class. Thereafter your class is looking like below .If u run the code you gets output in debug area, here input string have “$” but output string does not have”$” that is our category class functionality</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.12.42-PM.png"><img class="alignnone size-full wp-image-1284" alt="Screen Shot 2013-04-18 at 3.12.42 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-3.12.42-PM.png" width="1403" height="947" /></a></p>
<h4>Step 7:</h4>
<p><strong>Enjoy with coding</strong>, if you have any feedback please post your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/categories-in-objective-c-to-create-iphone-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/categories-in-objective-c-to-create-iphone-application/</feedburner:origLink></item>
		<item>
		<title>Table View of iPhone Application</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/PmkooiCbPAA/</link>
		<comments>http://www.infopitcher.com/2013/04/table-view-of-iphone-application/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 17:53:16 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[TableView]]></category>
		<category><![CDATA[UITableView]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1212</guid>
		<description><![CDATA[In this post I would like to explain about how to develop table view in ios/iPhone/iPad. It is a very important part of  ios/iPhone/iPad application development, it&#8217;s just like a list view. So you can display list of items in table view. Now let&#8217;s [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I would like to explain about how to develop table view in <strong>ios/iPhone/iPad</strong>. It is a very important part of  ios/iPhone/iPad application development, it&#8217;s just like a list view. So you can display list of items in table view. Now let&#8217;s see how to develop table view to iPhone.<span id="more-1212"></span></p>
<h4>step 1:</h4>
<p>Choose file, <strong>select new and select new project</strong>,  just look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.39.22-PM.png"><img class="alignnone size-full wp-image-1169" alt="Screen Shot 2013-04-18 at 2.39.22 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.39.22-PM.png" width="429" height="561" /></a></p>
<h4>step 2:</h4>
<p>Select the <strong>project template, </strong>here our purpose is to select<strong> Empty Application. </strong>It will look<b> </b>like below screenshot</p>
<p><strong><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.57.57-PM.png"><img class="alignnone size-full wp-image-1213" alt="Screen Shot 2013-04-22 at 5.57.57 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.57.57-PM.png" width="1402" height="950" /></a></strong></p>
<h4> step 3:</h4>
<p>Enter the <strong>product name and other project details. </strong>Then click Next</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.58.35-PM.png"><img class="alignnone size-full wp-image-1214" alt="Screen Shot 2013-04-22 at 5.58.35 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.58.35-PM.png" width="1399" height="951" /></a></p>
<h4> step 4:</h4>
<p>The project structure is just look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.05-PM.png"><img class="alignnone size-full wp-image-1215" alt="Screen Shot 2013-04-22 at 5.59.05 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.05-PM.png" width="1400" height="951" /></a></p>
<h4> step 5:</h4>
<p>Now we need to create <strong>UITableViewController</strong>, to do that <strong>right click</strong> any class file and <strong>select new file</strong> form popup menu item, it just look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.35-PM.png"><img class="alignnone size-full wp-image-1216" alt="Screen Shot 2013-04-22 at 5.59.35 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.35-PM.png" width="1401" height="950" /></a></p>
<h4> step 6:</h4>
<p>Select <strong>objective-c class</strong> form popup menu, will look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.49-PM.png"><img class="alignnone size-full wp-image-1217" alt="Screen Shot 2013-04-22 at 5.59.49 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-5.59.49-PM.png" width="1400" height="950" /></a></p>
<h4> step 7:</h4>
<p>Give the view-controller name and <strong>select the xib for user interface option</strong>, will look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.00.19-PM.png"><img class="alignnone size-full wp-image-1218" alt="Screen Shot 2013-04-22 at 6.00.19 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.00.19-PM.png" width="1400" height="950" /></a></p>
<h4> step 8:</h4>
<p>Now the <strong>project structure</strong> will look like below screenshot</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.00.32-PM.png"><img class="alignnone size-full wp-image-1219" alt="Screen Shot 2013-04-22 at 6.00.32 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.00.32-PM.png" width="1402" height="949" /></a></p>
<h4>step 9:</h4>
<p>Now we have window as well as table-view controller in project.But still table view is not added into window,so we need to connect table-view controller into window,to do that add <strong>table-view controller class</strong> as <strong>header</strong> of window controller (app delegate),will just look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.01.24-PM.png"><img class="alignnone size-full wp-image-1220" alt="Screen Shot 2013-04-22 at 6.01.24 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.01.24-PM.png" width="1400" height="952" /></a></p>
<h4> step 10:</h4>
<p>Create <strong>rootViewController</strong> as object, Just like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.01.59-PM.png"><img class="alignnone size-full wp-image-1221" alt="Screen Shot 2013-04-22 at 6.01.59 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.01.59-PM.png" width="1401" height="949" /></a></p>
<h4> step 11:</h4>
<p>Here <strong>allocate</strong> rootViewController and navigation Controller.The <strong>navigation Controller</strong> is used to add more then one view into window, for that purpose we create navigation controller with <strong>root object</strong> of rootViewController and added into window</p>
<p>[self.window addSubView:navigation.view];, it&#8217;s just like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.04.45-PM.png"><img class="alignnone size-full wp-image-1222" alt="Screen Shot 2013-04-22 at 6.04.45 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.04.45-PM.png" width="1401" height="950" /></a></p>
<h4>step 12:</h4>
<p>Now if you run the code,you will get below as output</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.05.10-PM.png"><img class="alignnone size-full wp-image-1223" alt="Screen Shot 2013-04-22 at 6.05.10 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.05.10-PM.png" width="1402" height="949" /></a></p>
<h4> step 13:</h4>
<p>Table-view is used to <strong>display</strong> list of items. So we need to add list of items here, to do that create <strong>NSMutableArray</strong> for store list of items, like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.06.03-PM.png"><img class="alignnone size-full wp-image-1225" alt="Screen Shot 2013-04-22 at 6.06.03 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.06.03-PM.png" width="1400" height="952" /></a></p>
<h4> step 14:</h4>
<p>To <strong>Allocate</strong> array with object as like below, here list of items is ios,iphone,ipad</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.07.26-PM.png"><img class="alignnone size-full wp-image-1226" alt="Screen Shot 2013-04-22 at 6.07.26 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.07.26-PM.png" width="1403" height="953" /></a></p>
<h4> step 15:</h4>
<p>Here i would like explain table-view properties ,the table-view have important three functions are below</p>
<p>1. Cell for row index-path to table-view =&gt; assign cell values<br />
2. Number of rows to table-view =&gt;set no of cells<br />
3. Number of section to table-view  =&gt;set no of section, set value look like below</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.08.14-PM.png"><img class="alignnone size-full wp-image-1227" alt="Screen Shot 2013-04-22 at 6.08.14 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.08.14-PM.png" width="1400" height="947" /></a></p>
<h4>step 16:</h4>
<p>Now run your code, you will get below image as output</p>
<p><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.08.38-PM.png"><img class="alignnone size-full wp-image-1228" alt="Screen Shot 2013-04-22 at 6.08.38 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-6.08.38-PM.png" width="383" height="711" /><br />
</a></p>
<h4>step 17:</h4>
<p>Enjoy with coding.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/table-view-of-iphone-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/table-view-of-iphone-application/</feedburner:origLink></item>
		<item>
		<title>Background Image Change on every 5sec using css3</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/ZnWawG-BrR0/</link>
		<comments>http://www.infopitcher.com/2013/04/background-image-change-on-every-5sec-using-css3/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 16:43:08 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Background image]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1232</guid>
		<description><![CDATA[For those who looking to change background image on every 5sec or some period of time this post will be very useful. In the past we have done this using some scripts like jquery, now you can do this with [...]]]></description>
				<content:encoded><![CDATA[<p>For those who looking to change <strong>background image</strong> on every <strong>5sec</strong> or some period of time this post will be very useful. In the past we have done this using some scripts like jquery, now you can do this with few lines of <strong>CSS3</strong>.</p>
<div id="attachment_598" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.infopitcher.com/wp-content/uploads/2011/03/background-image-change-on-every-5sec-using-jquery.png"><img class="size-full wp-image-598" title="background-image-change-on-every-5sec-using-jquery" alt="" src="http://www.infopitcher.com/wp-content/uploads/2011/03/background-image-change-on-every-5sec-using-jquery.png" width="500" height="100" /></a><p class="wp-caption-text">BBackground Image Change on every 5sec using css3</p></div>
<p><span id="more-1232"></span></p>
<div class="clearfix"><a class="live-demo" href="http://www.infopitcher.com/demo/Background-Image-Change-on-every-5sec-using-css3/" target="_blank">Demo</a><a class="download-script" href="http://www.infopitcher.com/downloads/Background Image Change on every 5sec using css3.zip" target="_blank">Download</a></div>
<h3>CSS code</h3>
<p>Below is the CSS code used</p>
<div class="code">#background {<br />
height: 100%;<br />
width:100%;<br />
position:absolute;<br />
z-index:-1;<br />
}<br />
#background ul {<br />
margin:0;<br />
padding:0;<br />
position:relative;<br />
height: 100%; width: 100%; margin: 0;<br />
}<br />
#background li {<br />
width:100%;<br />
height: 100%;<br />
position:absolute;<br />
list-style:none;<br />
opacity:0;<br />
}<br />
#background li.first-bg {<br />
animation:first 15s linear infinite;<br />
-moz-animation:first 15s linear infinite;/* firefox */<br />
-webkit-animation:first 15s linear infinite;/* Safari and Chrome */<br />
background:url(&#8216;millenniumBridge.jpg&#8217;) no-repeat;<br />
background-size:cover;<br />
}<br />
#background li.second-bg {<br />
animation:second 15s linear infinite;<br />
-moz-animation:second 15s linear infinite;/* firefox */<br />
-webkit-animation:second 15s linear infinite;/* Safari and Chrome */<br />
background:url(&#8216;bg_trinity.jpg&#8217;) no-repeat;<br />
background-size:cover;<br />
}<br />
#background li.third-bg {<br />
animation:third 15s linear infinite;<br />
-moz-animation:third 15s linear infinite;/* firefox */<br />
-webkit-animation:third 15s linear infinite;/* Safari and Chrome */<br />
background:url(&#8216;bg_clare_college.jpg&#8217;) no-repeat;<br />
background-size:cover;<br />
}<br />
@keyframes first {<br />
0% {opacity:1;}<br />
30% {opacity:1;}<br />
33% { opacity:0; }<br />
97% { opacity:0; }<br />
100%{ opacity:1; }&lt;<br />
}<br />
@keyframes second {<br />
0% {opacity:0;}<br />
30% {opacity:0;}<br />
33% { opacity:1; }<br />
63% { opacity:1; }<br />
66% { opacity:0; }<br />
100%{ opacity:0; }<br />
}<br />
@keyframes third {<br />
0% {opacity:0;}<br />
63% { opacity:0; }<br />
66% { opacity:1; }<br />
97% { opacity:1; }<br />
100%{ opacity:0; }<br />
}<br />
/* firefox */<br />
@-moz-keyframes first {<br />
0% {opacity:1;}<br />
30% {opacity:1;}<br />
33% { opacity:0; }<br />
97% { opacity:0; }<br />
100%{ opacity:1; }<br />
}<br />
@-moz-keyframes second {<br />
0% {opacity:0;}<br />
30% {opacity:0;}<br />
33% { opacity:1; }<br />
63% { opacity:1; }<br />
66% { opacity:0; }<br />
100%{ opacity:0; }<br />
}<br />
@-moz-keyframes third {<br />
0% {opacity:0;}<br />
63% { opacity:0; }<br />
66% { opacity:1; }<br />
97% { opacity:1; }<br />
100%{ opacity:0; }<br />
}<br />
/* Safari and Chrome */<br />
@-webkit-keyframes first {<br />
0% {opacity:1;}<br />
30% {opacity:1;}<br />
33% { opacity:0; }<br />
97% { opacity:0; }<br />
100%{ opacity:1; }<br />
}<br />
@-webkit-keyframes second {<br />
0% {opacity:0;}<br />
30% {opacity:0;}<br />
33% { opacity:1; }<br />
63% { opacity:1; }<br />
66% { opacity:0; }<br />
100%{ opacity:0; }<br />
}<br />
@-webkit-keyframes third {<br />
0% {opacity:0;}<br />
63% { opacity:0; }<br />
66% { opacity:1; }<br />
97% { opacity:1; }<br />
100%{ opacity:0; }<br />
}</div>
<h4>HTML code</h4>
<p>Below is the html code here you can see that all images are called as background image of li.</p>
<div class="code">&lt;div id=&#8221;background&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;li class=&#8221;first-bg&#8221;&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;second-bg&#8221;&gt;&lt;/li&gt;<br />
&lt;li class=&#8221;third-bg&#8221;&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</div>
<p>Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/background-image-change-on-every-5sec-using-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/background-image-change-on-every-5sec-using-css3/</feedburner:origLink></item>
		<item>
		<title>Image grayscale effect on hover using CSS3</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/xcxD8vSCHI8/</link>
		<comments>http://www.infopitcher.com/2013/04/image-grayscale-effect-on-hover-using-css3/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 14:27:02 +0000</pubDate>
		<dc:creator>sakthi</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Grayscale]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[image hover effect]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1190</guid>
		<description><![CDATA[In this post I am going to show how to create image grayscale effect using CSS3. This kind of effect you have seen before using Jquery or JavaScript. Use it and make something better for your website image gallery. So here [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I am going to show how to create image grayscale effect using CSS3. This kind of effect you have seen before using Jquery or JavaScript. Use it and make something better for your website image gallery.</p>
<div id="attachment_1193" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Image-grayscale-effect-on-hover-using-CSS3.jpg"><img class="size-full wp-image-1193" alt="Image grayscale effect on hover using CSS3" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Image-grayscale-effect-on-hover-using-CSS3.jpg" width="550" height="211" /></a><p class="wp-caption-text">Image grayscale effect on hover using CSS3</p></div>
<p><span id="more-1190"></span>So here is a simple example for image Grayscale effect using CSS3.Below is the CSS code to get grayscale effect use it and enjoy</p>
<div class="code">.grayscale {<br />
filter: url(&#8220;data:image/svg+xml;utf8,&lt;svg xmlns=\&#8217;http://www.w3.org/2000/svg\&#8217;&gt;&lt;filter id=\&#8217;grayscale\&#8217;&gt;&lt;feColorMatrix type=\&#8217;matrix\&#8217; values=\&#8217;0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\&#8217;/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&#8221;);<br />
filter: gray;<br />
-webkit-filter: grayscale(100%);<br />
-webkit-transition: all .6s ease;<br />
-webkit-backface-visibility: hidden;<br />
}<br />
.grayscale:hover {<br />
filter: url(&#8220;data:image/svg+xml;utf8,&lt;svg xmlns=\&#8217;http://www.w3.org/2000/svg\&#8217;&gt;&lt;filter id=\&#8217;grayscale\&#8217;&gt;&lt;feColorMatrix type=\&#8217;matrix\&#8217; values=\&#8217;1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\&#8217;/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale&#8221;);<br />
-webkit-filter: grayscale(0%);<br />
}</div>
<h3>Demo</h3>
<p style="text-align: center;"><a href="http://www.infopitcher.com/wp-content/uploads/2013/04/Image0966.jpg"><img class="grayscale" alt="Image0966" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Image0966-300x225.jpg" width="300" height="225" /></a></p>
<p style="text-align: left;">Hope you enjoy this post. If you any have suggestions or comments. please post your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/image-grayscale-effect-on-hover-using-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/image-grayscale-effect-on-hover-using-css3/</feedburner:origLink></item>
		<item>
		<title>Develop an iPhone Application using XCODE</title>
		<link>http://feedproxy.google.com/~r/infopitcher/~3/5pCWKOOpWuk/</link>
		<comments>http://www.infopitcher.com/2013/04/develop-an-iphone-application-using-xcode/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 07:12:42 +0000</pubDate>
		<dc:creator>dhaya</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[Mobile Application]]></category>
		<category><![CDATA[Ipad]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.infopitcher.com/?p=1167</guid>
		<description><![CDATA[In this post I would like to explain, how to create a new project to developing iphone/ipad/ipod Native apps.To do this you need Xcode,it is a development tool to develop ios(iphone/ipad/ipod) applications ,which is provide by Apple at free of cost [...]]]></description>
				<content:encoded><![CDATA[<p>In this post I would like to explain, how to create a new project to developing iphone/ipad/ipod Native apps.To do this you need Xcode,it is a development tool to develop ios(iphone/ipad/ipod) applications ,which is provide by Apple at free of cost in App store</p>
<p><span id="more-1167"></span>There are <strong>six steps</strong> to develop new app</p>
<h3><b>Step 1:</b></h3>
<p><b></b> Choose file ,select new and select new project, just like below</p>
<p><img class="alignnone size-full wp-image-1169" alt="Screen Shot 2013-04-18 at 2.39.22 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.39.22-PM.png" width="429" height="561" /></p>
<p><b>Step 2:                </b></p>
<p>Select the <strong>project template</strong> for your iOS</p>
<p>In ios there are seven default template is there , for your purpose you can select your project template but most of native apps developer to select single view application template to develop apps,so please choose single view application, like below and click next button</p>
<p><img class="alignnone size-full wp-image-1172" alt="Screen Shot 2013-04-18 at 2.40.09 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.40.09-PM.png" width="988" height="695" /></p>
<h3><b>STEP 3:</b></h3>
<p><b></b>Enter the <strong>product name and other project details</strong>, and click Next<img class="alignnone size-full wp-image-1176" alt="Screen Shot 2013-04-18 at 2.40.44 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.40.44-PM1.png" width="986" height="690" /></p>
<h3>Step 4:<b> </b></h3>
<p>Specify the<strong> project’s location</strong> in your file system, and click Save</p>
<h3>STEP 5:</h3>
<p>Click<strong> cmd+r</strong>, project will run show like below image is name as simulator</p>
<p><img class="alignnone size-full wp-image-1170" alt="Screen Shot 2013-04-18 at 2.45.30 PM" src="http://www.infopitcher.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-18-at-2.45.30-PM.png" width="363" height="709" /></p>
<p>Step 6:</p>
<p>Enjoy with coding</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infopitcher.com/2013/04/develop-an-iphone-application-using-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infopitcher.com/2013/04/develop-an-iphone-application-using-xcode/</feedburner:origLink></item>
	</channel>
</rss>
