<?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>FlexiCoder Blog</title>
	<atom:link href="http://www.flexicoder.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flexicoder.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 12:24:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Open doors effect at App launch</title>
		<link>http://www.flexicoder.com/blog/index.php/2012/02/open-doors-effect-at-app-launch/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2012/02/open-doors-effect-at-app-launch/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 12:24:07 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[Apps]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=372</guid>
		<description><![CDATA[This is a copy of a blog entry I originally wrote for ios-blog There are a number of apps in the App Store that launch with a set of closed doors, these are then opened to present the actual UI underneath it. I had to create this effect for an app I wrote for a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a copy of a blog entry I originally wrote for <a href="http://ios-blog.co.uk/iphone-development-tutorials/opening-doors-effect-after-an-app-launches/">ios-blog</a></p>
<p>There are a number of apps in the App Store that launch with a set of closed doors, these are then opened to present the actual UI underneath it.</p>
<p>I had to create this effect for an app I wrote for a client <a href="http://itunes.com/apps/jkmuaythai">http://itunes.com/apps/jkmuaythai</a></p>
<p>I&#8217;d assumed when I started that this would be a relatively simple task, just take the initial default image, cut it in half and a simple bit of animation would move them out of the way. What I hadn&#8217;t counted on is getting the orientation of the device from launch is not straightforward. The trick is to remember that the first view that is loaded will always assume it&#8217;s in Portrait mode, the view is then informed via the willRotate method that in fact the orientation is different and you can then handle this appropriately. The second trick is knowing that the willRotate takes a little bit of time to fire, so it&#8217;s now a simple case of delaying the call to the method that handles the animation.</p>
<p>The viewWillAppear method loads the images assuming that the view is in portrait and sets up a timer to call the openDoors method</p>
<pre class="brush: plain;">
-(void)viewWillAppear:(BOOL)animated {
    //All apps start in portrait mode, with the home button at the bottom,
    //If the device is being held with the home button in any other location then a
    //willRotate is fired!
    isPortrait = YES;
    doorsClosed = YES;

    //We assume we are in portrait mode until told otherwise
    self.leftDoor.image = [UIImage imageNamed:@&quot;DoorLeftiPadPortrait.png&quot;];
    self.rightDoor.image = [UIImage imageNamed:@&quot;DoorRightiPadPortrait.png&quot;];
    self.backgroundSplash.image = [UIImage imageNamed:@&quot;SlideBackgroundiPadPortrait.png&quot;];

    //Add a delay to the open doors sequence, this allows the OS to determine
    //the correct orientaion and fire the all important willRotate

    [NSTimer scheduledTimerWithTimeInterval: 3.5
                                     target: self
                                   selector: @selector(openDoors)
                                   userInfo: nil
                                    repeats: NO];
}
</pre>
<p>The willRotate method then ensures that the correct image is loaded</p>
<pre class="brush: plain;">
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return YES;
}

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
    isPortrait = UIDeviceOrientationIsPortrait(toInterfaceOrientation);
    if (!isPortrait) {
        //If the doors haven't already been opened then change them to the landscape ones
        if (doorsClosed) {
            self.leftDoor.image = [UIImage imageNamed:@&quot;DoorLeftiPadLandscape.png&quot;];
            self.rightDoor.image = [UIImage imageNamed:@&quot;DoorRightiPadLandscape.png&quot;];
        }
        self.backgroundSplash.image = [UIImage imageNamed:@&quot;SlideBackgroundiPadLandscape.png&quot;];
    } else {
        self.backgroundSplash.image = [UIImage imageNamed:@&quot;SlideBackgroundiPadPortrait.png&quot;];
    }
}
</pre>
<p>The openDoors method then just works out how far to move the images and kicks of the animation, I&#8217;ve included the old UIView beginAnimation and the Blocks way</p>
<pre class="brush: plain;">
-(void)openDoors {
    //Determine how far the doors need to move for them to disappear from view
    float adjust = (CGRectGetWidth(self.view.frame) &gt; CGRectGetHeight(self.view.frame)) ? CGRectGetWidth(self.view.frame) : CGRectGetHeight(self.view.frame);
    //Retrieve the original frame and then adjust the X position accordingly
    CGRect leftFrame = self.leftDoor.frame;
    CGRect rightFrame = self.rightDoor.frame;;

    leftFrame.origin.x = -adjust;
    rightFrame.origin.x += adjust;

//Old School Animation

//Set up the animation, change the frames and commit it
//	[UIView beginAnimations:@&quot;swipe&quot; context:nil];
//	[UIView setAnimationDuration:1.2];
//	[UIView setAnimationDelay:0.0];
//	[UIView setAnimationDelegate:self];
//
//      self.leftDoor.frame = leftFrame;
//	self.rightDoor.frame = rightFrame;
//
//	[UIView commitAnimations];

//Blocks
    [UIView animateWithDuration:1.2
                     animations:^{
                        self.leftDoor.frame = leftFrame;
                        self.rightDoor.frame = rightFrame;
                     }
    ];

    doorsClosed = NO;
}
</pre>
<p>Note this effect only works if the app is launching for the first time, i.e. not from the background.</p>
<p>I&#8217;ve put together a sample project that puts this all into practice</p>
<p><a href="https://github.com/Flexicoder/OpenDoorsDemo">https://github.com/Flexicoder/OpenDoorsDemo</a></p>
<p>Hope you find this useful, or if you have a better way of creating the same effect please let me know</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2012/02/open-doors-effect-at-app-launch/&title=Open+doors+effect+at+App+launch&text=This+is+a+copy+of+a+blog+entry+I+originally+wrote+for+ios-blog+There+are+a+number+of+apps+in+the+App+Store+that+launch+with+a+set+of+closed+doors%2C+these+are+then+opened+to+present+the+actual+UI...&tags=image+uiimage%2C+self+view%2C+self+rightdoor%2C+image%2C+frame%2C+imagenamed%2C+uiview%2C+uiimage%2C+method" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2012/02/open-doors-effect-at-app-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New App &#8211; Ballpark Costs</title>
		<link>http://www.flexicoder.com/blog/index.php/2012/01/new-app-ballpark-costs/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2012/01/new-app-ballpark-costs/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 14:28:12 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=359</guid>
		<description><![CDATA[When potential clients ask for a ballpark figure on development costs, these are the questions I ask to help clarify whats required and therefore affect the cost. They are in no particular order&#8230; What are the target platforms, iPhone, iPad, Android, Windows Mobile? If iPhone do you want a universal version, i.e. the same app [...]]]></description>
			<content:encoded><![CDATA[<p>When potential clients ask for a ballpark figure on development costs, these are the questions I ask to help clarify whats required and therefore affect the cost. They are in no particular order&#8230;</p>
<ul>
<li>What are the target platforms, iPhone, iPad, Android, Windows Mobile?</li>
<li>If iPhone do you want a universal version, i.e. the same app runs on iPhone and iPad (thanks <a href="https://twitter.com/#!/ithain" target="_blank">@ithain</a>)</li>
<li>Whats the target audience?</li>
<li>Do you have an idea of how you want the app to flow?</li>
<li>Are there existing apps out there that do something similar, if there are what are they and what will make this one different?</li>
<li>Are there existing apps that you like the style of or the way they work?</li>
<li>Will you apply for your own developers licences so that the app is submitted under your name?</li>
<li>Will the app be free, sold for a one off fee, have in-app purchases or have subscriptions?</li>
<li>Who will supply the artwork?</li>
<li>Does the app need to be location aware?</li>
<li>Ideas of timescale for release? (thanks <a href="https://twitter.com/#!/MrAntix" target="_blank">@MrAntix</a>)</li>
<li>Are there any hosting requirements? (thanks <a href="https://twitter.com/#!/MrAntix" target="_blank">@MrAntix</a>)</li>
<li>Third party services integration requirements? (thanks <a href="https://twitter.com/#!/MrAntix" target="_blank">@MrAntix</a>)</li>
<li>Any social media integration?</li>
</ul>
<p>And if the app contains dynamic data the following are also important questions&#8230;</p>
<ul>
<li>How will the app access the data?</li>
<li>Have the web services that supply the information been designed/written?</li>
<li>Would you require a content management system to update information contained in the app?</li>
<li>If its a Corporate app, what back end data do you need to access and synchronise  (thanks <a href="https://twitter.com/#!/ithain" target="_blank">@ithain</a>)</li>
</ul>
<p>Obviously the answers to these questions are likely to lead to more specific questions, but it helps with the thought process involved with what might be required</p>
<p>I would be really interested to know if there are any other questions you ask that I&#8217;ve not included?</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2012/01/new-app-ballpark-costs/&title=New+App+%26%238211%3B+Ballpark+Costs&text=When+potential+clients+ask+for+a+ballpark+figure+on+development+costs%2C+these+are+the+questions+I+ask+to+help+clarify+whats+required+and+therefore+affect+the+cost.&tags=the+app%2C+there%2C+thanks" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2012/01/new-app-ballpark-costs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CCLabelBMFont &#8211; not displaying</title>
		<link>http://www.flexicoder.com/blog/index.php/2011/05/cclabelbmfont-not-displaying/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2011/05/cclabelbmfont-not-displaying/#comments</comments>
		<pubDate>Fri, 13 May 2011 14:43:02 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[cocos2d]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=348</guid>
		<description><![CDATA[I hit a problem today where the CCLabelBMFont wasn&#8217;t rendering the text I wanted at all. I created the the fnt file using http://www.n4te.com/hiero/hiero.jnlp Turns out that as it creates the underlying png for some reason it saves it in a flipped format, therefore you need to load the png into your favourite graphics package [...]]]></description>
			<content:encoded><![CDATA[<p>I hit a problem today where the CCLabelBMFont wasn&#8217;t rendering the text I wanted at all. I created the the fnt file using http://www.n4te.com/hiero/hiero.jnlp</p>
<p>Turns out that as it creates the underlying png for some reason it saves it in a flipped format, therefore you need to load the png into your favourite graphics package and flip it vertically before using it in your project</p>
<p><a href="http://www.flexicoder.com/">See what I do</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2011/05/cclabelbmfont-not-displaying/&title=CCLabelBMFont+%26%238211%3B+not+displaying&text=I+hit+a+problem+today+where+the+CCLabelBMFont+wasn%26%238217%3Bt+rendering+the+text+I+wanted+at+all.+I+created+the+the+fnt+file+using+http%3A%2F%2Fwww.n4te.com%2Fhiero%2Fhiero.jnlp+Turns+out+that+as+it+creates+the...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2011/05/cclabelbmfont-not-displaying/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AirPrint &#8211; direct to the Printer</title>
		<link>http://www.flexicoder.com/blog/index.php/2011/02/airprint-direct-to-the-printer/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2011/02/airprint-direct-to-the-printer/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 12:12:25 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=345</guid>
		<description><![CDATA[If you have an AirPrint enabled printer and an iPhone/iPad running iOS4.2 or above you can print directly to the printer without the need for both devices to be connected through the same WiFi access point. On your iOS device, go to your WiFi settings and in the list of networks you should see an [...]]]></description>
			<content:encoded><![CDATA[<p>If you have an AirPrint enabled printer and an iPhone/iPad running iOS4.2 or above you can print directly to the printer without the need for both devices to be connected through the same WiFi access point. On your iOS device, go to your WiFi settings and in the list of networks you should see an entry that relates to the printer (so long as you are in range), and hey presto it all works</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2011/02/airprint-direct-to-the-printer/&title=AirPrint+%26%238211%3B+direct+to+the+Printer&text=If+you+have+an+AirPrint+enabled+printer+and+an+iPhone%2FiPad+running+iOS4.2+or+above+you+can+print+directly+to+the+printer+without+the+need+for+both+devices+to+be+connected+through+the+same+WiFi+access...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2011/02/airprint-direct-to-the-printer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free icons website</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/08/free-icons-website/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/08/free-icons-website/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 08:36:51 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[useful links]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=341</guid>
		<description><![CDATA[Great site for sets of free icons that can be used in your apps http://webtreats.mysitemyway.com/ Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>Great site for sets of free icons that can be used in your apps</p>
<p>http://webtreats.mysitemyway.com/</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/08/free-icons-website/&title=Free+icons+website&text=Great+site+for+sets+of+free+icons+that+can+be+used+in+your+apps+http%3A%2F%2Fwebtreats.mysitemyway.com%2F...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/08/free-icons-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Localisation language names</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/08/localisation-language-names/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/08/localisation-language-names/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 08:39:23 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=339</guid>
		<description><![CDATA[When creating a new localisation file Xcode expects you to supply the correct name for the file, the list of valid values is here Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>When creating a new localisation file Xcode expects you to supply the correct name for the file, the list of valid values is <a href="http://www.loc.gov/standards/iso639-2/php/English_list.php">here</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/08/localisation-language-names/&title=Localisation+language+names&text=When+creating+a+new+localisation+file+Xcode+expects+you+to+supply+the+correct+name+for+the+file%2C+the+list+of+valid+values+is+here...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/08/localisation-language-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CFBundleiconfile does not have an extension</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/07/cfbundleiconfile-does-not-have-an-extension/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/07/cfbundleiconfile-does-not-have-an-extension/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 15:11:31 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[useful links]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=335</guid>
		<description><![CDATA[Currently there is an issue with Apples Application Loader, although the documentation states that you can omit the file extension from the Icon File name, and this works when running locally, when you come to submit it to the app store it fails validation. At the moment you have to specify the names using the [...]]]></description>
			<content:encoded><![CDATA[<p>Currently there is an issue with Apples Application Loader, although the documentation states that you can omit the file extension from the Icon File name, and this works when running locally, when you come to submit it to the app store it fails validation.</p>
<p>At the moment you have to specify the names using the CFBundleIconFiles<br />
<img src="http://www.flexicoder.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-28-at-16.09.49.png" alt="Screen shot 2010-07-28 at 16.09.49" title="Screen shot 2010-07-28 at 16.09.49" width="409" height="190" class="aligncenter size-full wp-image-336" /></p>
<p><a href="http://developer.apple.com/library/ios/#qa/qa2010/qa1686.html">This is also a useful link to the Apple site that explains what icons are need for what device</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/07/cfbundleiconfile-does-not-have-an-extension/&title=CFBundleiconfile+does+not+have+an+extension&text=Currently+there+is+an+issue+with+Apples+Application+Loader%2C+although+the+documentation+states+that+you+can+omit+the+file+extension+from+the+Icon+File+name%2C+and+this+works+when+running+locally%2C+when...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/07/cfbundleiconfile-does-not-have-an-extension/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Truly quit app under iOS4</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/07/truly-quit-app-under-ios4/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/07/truly-quit-app-under-ios4/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 11:07:20 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=333</guid>
		<description><![CDATA[Great article that explains how to terminate your app so that it doesn&#8217;t go into suspend mode, basic details are here Multi-tasking can be great, but it has added some complexity to programming on the iPhone. For many apps there really is no advantage. For instance, does the “That’s What She Said” button really need [...]]]></description>
			<content:encoded><![CDATA[<p>Great <a href="http://maniacdev.com/2010/07/screw-multi-tasking-how-to-make-your-ios-4-apps-exit-for-real/">article</a> that explains how to terminate your app so that it doesn&#8217;t go into suspend mode, basic details are here</p>
<p>Multi-tasking can be great, but it has added some complexity to programming on the iPhone.  For many apps there really is no advantage. For instance, does the “That’s What She Said” button really need to stay in memory?</p>
<p>It’s some added complexity that programmers don’t need.. some of the more complex memory intensive apps will just exit anyways, and programming the app to suspend can be a highly complicated task.</p>
<p>Fortunately there is a simple way to make your iOS 4 apps terminate for real when the user taps the home button.</p>
<p>This is a simple process:</p>
<p>Open your info.plist file<br />
Add The Key UIApplicationExitsOnSuspend<br />
Set the new key to YES<br />
Now your applicationwillterminate: method will be run when the user taps the home key, and your app will exit for real.</p>
<p><a href="http://www.flexicoder.com/">See what I do</a></p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/07/truly-quit-app-under-ios4/&title=Truly+quit+app+under+iOS4&text=Great+article+that+explains+how+to+terminate+your+app+so+that+it+doesn%26%238217%3Bt+go+into+suspend+mode%2C+basic+details+are+here+Multi-tasking+can+be+great%2C+but+it+has+added+some+complexity+to+programming...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/07/truly-quit-app-under-ios4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 &#8211; Table Valued Parameters</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/06/sql-server-2008-table-valued-parameters/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/06/sql-server-2008-table-valued-parameters/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 19:39:54 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[.Net security]]></category>
		<category><![CDATA[query syntax]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=329</guid>
		<description><![CDATA[Here is a great article that explains how to use TVP&#8217;s via .Net and a stored procedure Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sommarskog.se/arrays-in-sql-2008.html">Here</a> is a great article that explains how to use TVP&#8217;s via .Net and a stored procedure</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/06/sql-server-2008-table-valued-parameters/&title=SQL+Server+2008+%26%238211%3B+Table+Valued+Parameters&text=Here+is+a+great+article+that+explains+how+to+use+TVP%26%238217%3Bs+via+.Net+and+a+stored+procedure...&tags=" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/06/sql-server-2008-table-valued-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Images onto the iPhone Simulator</title>
		<link>http://www.flexicoder.com/blog/index.php/2010/06/getting-images-onto-the-iphone-simulator/</link>
		<comments>http://www.flexicoder.com/blog/index.php/2010/06/getting-images-onto-the-iphone-simulator/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 13:21:34 +0000</pubDate>
		<dc:creator>flexicoder</dc:creator>
				<category><![CDATA[Simulator]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.flexicoder.com/blog/?p=325</guid>
		<description><![CDATA[To add your own pictures to the simulator, get the simulator running and then drag your image onto the simulator. This will cause the simulator to open it mobile safari. Then mouse down and hold on the image, you will then see the following prompt&#8230; Clicking save will then include your image. Social Bookmarking]]></description>
			<content:encoded><![CDATA[<p>To add your own pictures to the simulator, get the simulator running and then drag your image onto the simulator. This will cause the simulator to open it mobile safari. Then mouse down and hold on the image, you will then see the following prompt&#8230;<br />
<div id="attachment_326" class="wp-caption aligncenter" style="width: 347px"><img src="http://www.flexicoder.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-14.15.47.png" alt="Upload image to simulator" title="Image to simulator" width="337" height="497" class="size-full wp-image-326" /><p class="wp-caption-text">Upload image to simulator</p></div></p>
<p>Clicking save will then include your image.</p>
<br/><a href="http://www.socialmarker.com/?link=http://www.flexicoder.com/blog/index.php/2010/06/getting-images-onto-the-iphone-simulator/&title=Getting+Images+onto+the+iPhone+Simulator&text=To+add+your+own+pictures+to+the+simulator%2C+get+the+simulator+running+and+then+drag+your+image+onto+the+simulator.+This+will+cause+the+simulator+to+open+it+mobile+safari.&tags=simulator" target="_blank"><img src= "http://www.socialmarker.com/bookmark.gif" border="0" /></a><noscript><a href="http://www.socialmarker.com" >Social Bookmarking</a></noscript>]]></content:encoded>
			<wfw:commentRss>http://www.flexicoder.com/blog/index.php/2010/06/getting-images-onto-the-iphone-simulator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

