<?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>Free landscape SMS text message application for the iPhone, iPod Touch and Android &#187; Applications</title>
	<atom:link href="http://www.jellysms.com/blog/tag/applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jellysms.com/blog</link>
	<description>The smarter way to send SMS text messages</description>
	<lastBuildDate>Mon, 30 Aug 2010 08:44:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Developers: integrate your own app with Jelly SMS</title>
		<link>http://www.jellysms.com/blog/developers-integrate-your-own-app-with-jelly-sms/</link>
		<comments>http://www.jellysms.com/blog/developers-integrate-your-own-app-with-jelly-sms/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 14:34:47 +0000</pubDate>
		<dc:creator>Finbarr</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Comma]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Jsms]]></category>
		<category><![CDATA[Openurl]]></category>
		<category><![CDATA[Phone Numbers]]></category>
		<category><![CDATA[Sms]]></category>
		<category><![CDATA[Sms Client]]></category>
		<category><![CDATA[Sms Sms]]></category>
		<category><![CDATA[Url Scheme]]></category>

		<guid isPermaLink="false">http://www.jellysms.com/blog/?p=261</guid>
		<description><![CDATA[In the latest version of Jelly SMS, I have added a URL scheme which allows other applications to open Jelly SMS and also open a new SMS compose window to a specified number. So if your app contains phone numbers, you could easily allow users to use Jelly SMS as the SMS client on their [...]]]></description>
			<content:encoded><![CDATA[<p>In the latest version of Jelly SMS, I have added a URL scheme which allows other applications to open Jelly SMS and also open a new SMS compose window to a specified number. So if your app contains phone numbers, you could easily allow users to use Jelly SMS as the SMS client on their iPhone or iPod Touch!</p>
<p><a title="tweet" href="http://twitter.com/jellysms">Get in touch</a> if you decide to use this in your app and I will feature your app here on the blog.</p>
<p>It&#8217;s simple to use. See below for a code example:</p>
<textarea cols="40" rows="10" name="code" class="Xml">// SMS a normal number
NSString * jsmsUrlString  = @"jsms://0868732234";


// SMS to many numbers (separate each number with a comma - no spaces)
jsmsUrlString  = @"jsms://0868732234,64932423433,+44853223433";


// Or to simply open Jelly SMS without opening a new message
jsmsUrlString  = @"jsms:";

UIApplication *app = [UIApplication sharedApplication];
 
NSURL *jellySMSURL = [NSURL URLWithString:jsmsUrlString];

// Now we test if the URL can be opened on this device (e.g. is Jelly SMS installed?)
if ([app canOpenURL:jellySMSURL])
  {
	// Once in here, this means that Jelly SMS is installed on the users iPhone/iPod/iPad
	// So you can safely add Jelly SMS as an option in your menu and UI items
	
	
	// Then to open a new compose window in Jelly SMS to all the people in the contact group
    [app openURL:jellySMSURL];
    return;
  }
</textarea>
	<!-- Wordpress Code Snippet -->
	<script type="text/javascript" src="http://www.jellysms.com/blog/wp-content/plugins/wordpress-code-snippet/js/shCore.js"></script><script type="text/javascript" src="http://www.jellysms.com/blog/wp-content/plugins/wordpress-code-snippet/js/shBrushXml.js"></script>
	<link type="text/css" rel="stylesheet" href="http://www.jellysms.com/blog/wp-content/plugins/wordpress-code-snippet/css/SyntaxHighlighter.css"/>
	
	<script language="javascript">
	dp.SyntaxHighlighter.ClipboardSwf = 'http://www.jellysms.com/blog/wp-content/plugins/wordpress-code-snippet/js/clipboard.swf';
	dp.SyntaxHighlighter.HighlightAll('code');
	</script>
	<!-- End Wordpress Code Snippet -->
	]]></content:encoded>
			<wfw:commentRss>http://www.jellysms.com/blog/developers-integrate-your-own-app-with-jelly-sms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
