<?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>Steili.com &#187; iPhone</title>
	<atom:link href="http://www.steili.com/wordpress/category/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.steili.com/wordpress</link>
	<description>My life ... My blog</description>
	<lastBuildDate>Thu, 20 May 2010 21:57:59 +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>mySlate for iPad 1.03 Approved</title>
		<link>http://www.steili.com/wordpress/2010/05/20/myslate-for-ipad-1-03-approved/</link>
		<comments>http://www.steili.com/wordpress/2010/05/20/myslate-for-ipad-1-03-approved/#comments</comments>
		<pubDate>Thu, 20 May 2010 21:57:57 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=214</guid>
		<description><![CDATA[
Just a heads up for anyone who has it &#8230; 1.03 of mySlate for iPad was just approved by Apple and should be propagating its way through the app store now. Here&#8217;s the changelog:
 
#WebView:
Added Bookmark Folders
Save Images with 2 finger tap on image
2 finger swipe left/right to go back/forward
#Photos:
Option to randomize the slideshow
#Videos
New display layout
#General
Change [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.steili.com/wordpress/wp-content/uploads/2010/05/Screen-shot-2010-05-20-at-3.56.12-PM.png" border="0" alt="Screen shot 2010-05-20 at 3.56.12 PM.png" width="199" height="191" /></p>
<p>Just a heads up for anyone who has it &#8230; 1.03 of mySlate for iPad was just approved by Apple and should be propagating its way through the app store now. Here&#8217;s the changelog:</p>
<p> </p>
<p><strong>#WebView:</strong></p>
<p>Added Bookmark Folders</p>
<p>Save Images with 2 finger tap on image</p>
<p>2 finger swipe left/right to go back/forward</p>
<p><strong>#Photos:</strong></p>
<p>Option to randomize the slideshow</p>
<p><strong>#Videos</strong></p>
<p>New display layout</p>
<p><strong>#General</strong></p>
<p>Change password</p>
<p>Contact Support﻿ from the app</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2010/05/20/myslate-for-ipad-1-03-approved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limiting UITableview Cell Moves Between Sections</title>
		<link>http://www.steili.com/wordpress/2010/05/01/limiting-uitableview-cell-moves-between-sections/</link>
		<comments>http://www.steili.com/wordpress/2010/05/01/limiting-uitableview-cell-moves-between-sections/#comments</comments>
		<pubDate>Sat, 01 May 2010 17:25:13 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=206</guid>
		<description><![CDATA[
Problem: You want to limit if a tableview cell is ABLE to move to a new section, or is limited to ONLY moving to a new section. For example in mySlate I&#8217;m supporting moving bookmarks to a new section/folder. However the bookmarks are laid out in alphabetical order inside a section/folder, so re-ordering them would [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.steili.com/wordpress/wp-content/uploads/2010/05/CBD4D958-0624-4B0E-9D08-022F7C6C8CDE.jpg" alt="CBD4D958-0624-4B0E-9D08-022F7C6C8CDE.jpg" border="0" width="160" height="90" /></p>
<p>Problem: You want to limit if a tableview cell is ABLE to move to a new section, or is limited to ONLY moving to a new section. For example in mySlate I&#8217;m supporting moving bookmarks to a new section/folder. However the bookmarks are laid out in alphabetical order inside a section/folder, so re-ordering them would do no good. Each time you open the bookmarks view they are returned alphabetically from the data store.</p>
<p>Solution:</p>
<pre>
- (NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath *)proposedDestinationIndexPath
{
    if( sourceIndexPath.section != proposedDestinationIndexPath.section )
    {
        return proposedDestinationIndexPath;
    }
    else
    {
        return sourceIndexPath;
    }
//Reverse those to support only moving inside a section
}
</pre>
<p>Of course supporting movement in the tableview is yours to implement.</p>
<p>Source: <a href="http://stackoverflow.com/questions/849926/how-to-limit-uitableview-row-reordering-to-a-section">stackoverflow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2010/05/01/limiting-uitableview-cell-moves-between-sections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving an Image from UIWebView</title>
		<link>http://www.steili.com/wordpress/2010/04/30/saving-an-image-from-uiwebview/</link>
		<comments>http://www.steili.com/wordpress/2010/04/30/saving-an-image-from-uiwebview/#comments</comments>
		<pubDate>Sat, 01 May 2010 02:59:47 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=196</guid>
		<description><![CDATA[
I spent the last few days trying to wrap my head around how to save a user selected image in a UIWebView. The concept itself would seem really simple, and if you&#8217;re using Safari on the iPad or iPhone it is really simple. You just tap and hold on an image. Simple. Problem is, when [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.steili.com/wordpress/wp-content/uploads/2010/04/IMG_0049.jpg" alt="IMG_0049.jpg" border="0" width="540" height="264" /></p>
<p>I spent the last few days trying to wrap my head around how to save a user selected image in a UIWebView. The concept itself would seem really simple, and if you&#8217;re using Safari on the iPad or iPhone it is really simple. You just tap and hold on an image. Simple. Problem is, when you&#8217;re developing you&#8217;re own application, this functionality doesn&#8217;t exist in UIWebView. Don&#8217;t believe me? Try it out for yourself. Go ahead&#8230; I&#8217;ll wait.</p>
<p>Ok, so if you&#8217;re still here you must have found out I&#8217;m right. The worst part of all this is I found out the hard way&#8230; from a user. I rarely save images from the web, so it never occurred to me to try it in my own app (and honestly I thought this was built in freebie functionality). Well, I got an email the other day from a user who was shocked that this didn&#8217;t work. He was not nearly as shocked as I was. I was even more shocked to find out that there&#8217;s pretty much nobody on the web who has discussed how to do this. Much time was spent searching for a solution, a couple tweets sent with only crickets responding, time was spent filling out a bug report with Apple (<a href="http://openradar.appspot.com/radar?id=303401">radar</a>) only to have it closed without a work around as a duplicate. So, I basically hit a brick wall.</p>
<p>Alright, let&#8217;s get down to it. My complaining is done. Well not really. Did you also know its a huge PITA to handle touches in a UIWebView? Like to the point where you&#8217;re either having to <a href="http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/">sub-class UIWindow</a> to trap touches or you&#8217;re having to add a view <a href="http://codepimpsdotorg.blogspot.com/2009/10/capturing-uiwebview-touches.html">above the UIWebView</a>. I&#8217;m going to leave it up to you as to how you want to implement what we&#8217;re talking about. I personally decided to not bother with any of it. Why? Well, I&#8217;ve already started building in a bunch of gestures, so it just made sense use a gesture recognizer instead of adding in a bunch of code which may or may not end up breaking sooner than later. My hope is that Apple fixes the problem, but I&#8217;m not holding my breath. Anyway, choose for yourself. For this example we&#8217;ll just follow the KISS method.</p>
<p>Ok, here come the code. First things first, you need to have some kind of way to collect touches. For simplicity we&#8217;ll use a UITapGestureRecognizer:</p>
<pre>
UITapGestureRecognizer *doubleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(doubleTap:)];
doubleTap.numberOfTouchesRequired = 2;
[self.webView addGestureRecognizer:doubleTap];
[doubleTap release];</pre>
<p>What we&#8217;ve done is simply define a gesture (two fingers on tap the screen at the same time) and add that to the webview. When the webview detects two fingers on the screen (tap) it&#8217;ll fire the doubleTap method which is where we&#8217;ll figure out what image has been selected (if any at all).</p>
<pre>
- (void) doubleTap:(UITapGestureRecognizer *)sender {
	int scrollPosition = [[self.webView stringByEvaluatingJavaScriptFromString:@"window.pageYOffset"] intValue];
	CGPoint startPoint = [sender locationInView:self.webView];
	NSString *js = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).tagName", startPoint.x, startPoint.y+scrollPosition];
	NSString *value = [self.webView stringByEvaluatingJavaScriptFromString:js];
	if ([value isEqualToString:@"IMG"]) {
		NSString *imgURL = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).src", startPoint.x, startPoint.y+scrollPosition];
		NSString *urlToSave = [self.webView stringByEvaluatingJavaScriptFromString:imgURL];
		}

//Do whatever you want - like a UIAlertView or UIPopover to let the user chose what to do with the image
}
</pre>
<p>So, let&#8217;s walk through the code. The first thing we need to get is where we are on the page. Without this vital chunk of information we end up sending the same coordinates to the document so even if we&#8217;re at the bottom of the web page, when we tap the top of the screen it sends the coordinates for the header image. Not good. Next we get the location of the tap in the webView itself. After that we determine which element is at the location where the user tapped. Notice we added the scroll position to the y coordinate so again we don&#8217;t end up with the same x,y all the time. &#8216;tagName&#8217; returns back the element type &#8211; &#8216;A&#8217;, &#8216;IMG&#8217;, &#8216;IFRAME&#8217; etc. We only want images right now (you could always grab the a ref if you wanted to do other fun stuff) so we throw an if statement in to check if the element is an image. If it is, we grab the URL of the element and do stuff with it.</p>
<p>When that code is all said and done you&#8217;ll end up with an NSString like so:<br />
http://justanotheripadblog.com/wp-content/uploads/2010/04/3GiPad_thumb.jpg<br />
Nice right?</p>
<p>So, that&#8217;s how I ended up saving images from a UIWebView without resorting to private API calls or other wacky business.</p>
<p><b>Sound Off:</b> Did this work for you? Am I crazy and there was a much easier way? Please let me know in the comments. Thanks!</p>
<p>Credits: <a href="http://www.icab.de/blog/2009/07/27/webkit-on-the-iphone-part-1/#comment-212">iCab Blog</a> for the elementFromPoint idea &#8211; see Alexander&#8217;s comment on 9/1 11:55am, and the <a href="http://www.perfectbrowser.com/">support folks at perfectbrowser.com</a> who got me started looking at doing this through javascript.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2010/04/30/saving-an-image-from-uiwebview/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>gCalWall and gCalWall Updated 1.4</title>
		<link>http://www.steili.com/wordpress/2009/09/16/gcalwall-and-gcalwall-updated-1-4/</link>
		<comments>http://www.steili.com/wordpress/2009/09/16/gcalwall-and-gcalwall-updated-1-4/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 22:22:29 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=176</guid>
		<description><![CDATA[Just an FYI &#8211; gCalWall and gCalWall Lite have been updated to 1.4
There was not a lot of changes to the full version &#8211; just some bug fixes however due to my update to Snow Leopard I lost all backwards compatibility with the older iPhone SDKs so the new versions do not support any iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>Just an FYI &#8211; gCalWall and gCalWall Lite have been updated to 1.4</p>
<p>There was not a lot of changes to the full version &#8211; just some bug fixes however due to my update to Snow Leopard I lost all backwards compatibility with the older iPhone SDKs so the new versions do not support any iPhone platform older than 3.0. The lite version is now ad supported and almost completely the same as the full version. This is a test to see if I can actually support development on ads&#8230; if it fails then I&#8217;ll end up going back to a truly lite version. </p>
<p>Finally, I think I&#8217;ve got a bug where if you take a picture with the camera it is not putting that picture into the app properly. I&#8217;ll try to track that down asap and get it resolved. Not sure why it started showing up now, but I have a feeling that its only a problem on 3.1&#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/09/16/gcalwall-and-gcalwall-updated-1-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Look: iPhone Sketchbook by Kapsoft</title>
		<link>http://www.steili.com/wordpress/2009/09/16/quick-look-iphone-sketchbook-by-kapsoft/</link>
		<comments>http://www.steili.com/wordpress/2009/09/16/quick-look-iphone-sketchbook-by-kapsoft/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 22:10:43 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=173</guid>
		<description><![CDATA[
Here&#8217;s something I know. I know I can&#8217;t draw. I know that when I get a great little idea for an iPhone app, that there&#8217;s a couple things which are going to give me a hard time before I even get down to considering code and that&#8217;s mapping out the application itself and drawing what [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://justanotheriphoneblog.com/wordpress/wp-content/uploads/2009/09/IMG_0304.jpg" alt="IMG_0304.jpg" border="0" width="640" height="480" /><br /><strong></strong></p>
<p>Here&#8217;s something I know. I know I can&#8217;t draw. I know that when I get a great little idea for an iPhone app, that there&#8217;s a couple things which are going to give me a hard time before I even get down to considering code and that&#8217;s mapping out the application itself and drawing what its going to look like when it gets on the device. Well thankfully there&#8217;s at least one new tool to ad to my arsenal and that&#8217;s the iPhone Sketchbook. </p>
<p>Sometimes an idea is so darned obvious that nobody really thinks about it. There&#8217;s a ton of very good iPhone books and many of them discuss planning out your application before you start writing it. There&#8217;s also many people who (like me) have done this that hard way with an iPhone like shape on a piece of paper and then maybe some horrible little icon things to represent common elements like the status bar, the signal strength and the battery. My iPhone drawings are horrible and  finally there&#8217;s a book for that. </p>
<p><span id="more-173"></span><img src="http://justanotheriphoneblog.com/wordpress/wp-content/uploads/2009/09/IMG_0305.jpg" alt="IMG_0305.jpg" border="0" width="640" height="480" /></p>
<p>The iPhone Sketchbook is the brainchild of <a href="http://www.kapsoft.com">Kapsoft</a> and I love it. I&#8217;ve only had the chance to use it a couple times, but I can tell already that its the (near) perfect tool for capturing an iPhone app idea quickly and easily so that when you sit down to really think through an application your initial idea can be right there ready for you to implement it. </p>
<p>I&#8217;ve tried a couple different methods for designing applications and prior the the sketchbook nothing had really stuck. There was always free hand drawing on lined or graph paper and teamed with the iPhone Stencil I bought that worked out pretty well. Other tools (like OmniSketch) didn&#8217;t work out so well simply due to the complexity required just to capture an idea. Now, with the iPhone Sketchbook I&#8217;ve got a simple notepad which already has the iPhone laid out on paper for me, ready for my to start filling in the elements and making notes so there is no chance I can forget the details later.</p>
<p><img src="http://justanotheriphoneblog.com/wordpress/wp-content/uploads/2009/09/IMG_0306.jpg" alt="IMG_0306.jpg" border="0" width="480" height="640" /></p>
<p>Great concept and as I said &#8220;near&#8221; perfect. My only complaint is I would really like to see the iPhone itself be bigger and by possibly adding a second image on the page the sketchbook would be even better. On paper its life size, which is handy, but when doing an initial sketch I&#8217;m less worried about scale sizing and more worried about capturing the essence of the idea quickly. With more space to draw I think capturing the idea would be simpler and less concern would be placed on making sure everything fits. </p>
<p>That&#8217;s a fairly minor gripe however. And so far I&#8217;m really happy with the iPhone Sketchbook. If you&#8217;re an application developer looking for a great tool to capture ideas with, the iPhone Sketchbook definitely warrants a look. You can find out more about the sketchbook at <a href="http://www.MobileSketchBook.com/">Kapsoft&#8217;s Sketchbook Website</a>, pick it for <a href="http://www.amazon.com/gp/product/B002IE2ZK4?ie=UTF8&#038;tag=iphoapplsketb-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B002IE2ZK4">$14.99 at Amazon</a>, or you can check out the video (not mine) below:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/AMkoy2qZDZ4&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AMkoy2qZDZ4&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/09/16/quick-look-iphone-sketchbook-by-kapsoft/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>gCalWall &amp; Lite updates</title>
		<link>http://www.steili.com/wordpress/2009/09/07/gcalwall-lite-updates/</link>
		<comments>http://www.steili.com/wordpress/2009/09/07/gcalwall-lite-updates/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 15:42:03 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/2009/09/07/gcalwall-lite-updates/</guid>
		<description><![CDATA[Just so everyone is aware &#8211; the updates were submitted over a week ago. Just got this email a little while ago: Your application, gCalWall, is requiring unexpected additional time for review.   We apologize for the delay, and will update you with further status as soon as we are able.Thank you for your [...]]]></description>
			<content:encoded><![CDATA[<p>Just so everyone is aware &#8211; the updates were submitted over a week ago. Just got this email a little while ago: <br/><br/>Your application, gCalWall, is requiring unexpected additional time for review.   We apologize for the delay, and will update you with further status as soon as we are able.<br/><br/>Thank you for your patience.<br/><br/>iPhone Developer Program<br/><br/>Waiting on Apple&#8230;<br/>
<div class="iblogger-footer"><br clear="all"/>
<p style="text-align:right;font-size:10px;">[Posted from iPhone]</p>
<p><br/></div>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/09/07/gcalwall-lite-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: gCalWall &amp; gCalWall Lite</title>
		<link>http://www.steili.com/wordpress/2009/08/28/update-gcalwall-gcalwall-lite/</link>
		<comments>http://www.steili.com/wordpress/2009/08/28/update-gcalwall-gcalwall-lite/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 02:27:19 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=170</guid>
		<description><![CDATA[
 photo credit: BrianScott
I&#8217;ve gotten a couple of emails giving me some feedback about crashing in both applications. It would appear that some are having the app crash as soon as it opens, others are crashing when they hit the settings page and change the text options. To be honest I was able to recreate [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Snow Leopard" href="http://www.flickr.com/photos/53068636@N00/151328268/" target="_blank"><img src="http://farm1.static.flickr.com/55/151328268_fd8cc31be4_m.jpg" border="0" alt="Snow Leopard" /></a><br />
<small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="http://www.steili.com/wordpress/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="BrianScott" href="http://www.flickr.com/photos/53068636@N00/151328268/" target="_blank">BrianScott</a></small></p>
<p>I&#8217;ve gotten a couple of emails giving me some feedback about crashing in both applications. It would appear that some are having the app crash as soon as it opens, others are crashing when they hit the settings page and change the text options. To be honest I was able to recreate the crashes &#8211; but only on 2.x software. I had a report of the app dying on 3.0.1 but so far I haven&#8217;t seen that yet.</p>
<p>So, that brings me to the next points:</p>
<p>1. I have tried as best I can &#8211; but I can&#8217;t get any of my 3 devices to downgrade to 2.2.1 &#8211; without that I can&#8217;t test on device.</p>
<p>2. See the picture up there? Snow Leopard. Yea, it came out. Yea, I bought it. And while is rocks &#8211; there&#8217;s one thing that sucks&#8230; The iPhone 3.0 SDK on Snow Leopard DOES NOT support older versions of the SDK, and you can&#8217;t install older SDKs. So what does that mean? <strong><em>That means gCalWall and gCalWall 1.4 will be 3.0 only.</em><span style="font-weight: normal;"> With no way to test older iPhone builds there&#8217;s little I can do &#8211; </span><em>SORRY!!!</em></strong></p>
<p>3. gCalWall Lite is moving to an ad supported model. With a couple thousand users over the past few months (and over 50% of my full version users being cracked versions) &#8211; it was time to find a better way. So ad supported it is. But with ad support, I&#8217;ve decided to turn on basically everything from the full version in the lite version.</p>
<p>There you have it. That&#8217;s the update. Let me know what you think &#8211; and again I&#8217;m sorry for having to drop 2.x support. Unfortunately Apple has dropped 2.x support from the SDKs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/08/28/update-gcalwall-gcalwall-lite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow! Its been a while!</title>
		<link>http://www.steili.com/wordpress/2009/07/02/wow-its-been-a-while/</link>
		<comments>http://www.steili.com/wordpress/2009/07/02/wow-its-been-a-while/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 23:04:59 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/2009/07/02/wow-its-been-a-while/</guid>
		<description><![CDATA[A little update I guess is due. First thanks to everyone who bought gCalWall. I know I promised some of you an update and that is coming. I plan on starting it next week (hopefully). Apple still hasn&#8217;t fixed the API to allow me to save your wallpaper automatically, but I can work on some [...]]]></description>
			<content:encoded><![CDATA[<p>A little update I guess is due. First thanks to everyone who bought gCalWall. I know I promised some of you an update and that is coming. I plan on starting it next week (hopefully). Apple still hasn&#8217;t fixed the API to allow me to save your wallpaper automatically, but I can work on some of the bugs and tweak things to work faster, so that&#8217;s what I&#8217;m going to do. </p>
<p>I&#8217;ve also decided to just leave pricing where it is. I think for what it does and the fact that I can&#8217;t set the wallpaper for you, it&#8217;s a fair price. </p>
<p>Again thanks to all who have purchased gCalWall. It&#8217;s definitely done well enough to cover a nice vacation with my lovely wife!</p>
<p><a href="http://www.steili.com/wordpress/wp-content/uploads/2009/07/p-2048-1536-caedb2f8-f3da-4856-b4eb-071a0bbf6676.jpeg"><img src="http://www.steili.com/wordpress/wp-content/uploads/2009/07/p-2048-1536-caedb2f8-f3da-4856-b4eb-071a0bbf6676.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/07/02/wow-its-been-a-while/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gCalWall Updates</title>
		<link>http://www.steili.com/wordpress/2009/04/23/gcalwall-updates/</link>
		<comments>http://www.steili.com/wordpress/2009/04/23/gcalwall-updates/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 16:11:43 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[gCalWall]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=166</guid>
		<description><![CDATA[
I just wanted to throw up a quick post on the current state of gCalWall. I know there&#8217;s some things that are a little &#8220;wonky&#8221;. Some (minor number) of folks have seen issues with all day events, and some other stuff like blurry images. I have every intention of doing everything I can to fix [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.steili.com/wordpress/wp-content/uploads/2009/04/gcalwall-128.png" alt="gCalWall_128.png" border="0" width="128" height="128" /></p>
<p>I just wanted to throw up a quick post on the current state of gCalWall. I know there&#8217;s some things that are a little &#8220;wonky&#8221;. Some (minor number) of folks have seen issues with all day events, and some other stuff like blurry images. I have every intention of doing everything I can to fix these issues. I also have every intention of working in some requested improvements. But at the same time, I haven&#8217;t made much of anything off of gCalWall wall &#8211; so while its a product I intend to continue working on, it&#8217;s not a &#8220;top&#8221; priority.</p>
<p>So, long story short &#8211; I&#8217;m working on it, but I wouldn&#8217;t expect to release anything (aside from a major affects everybody emergency bugfix) until the iPhone 3.0 software is released. Why? Well, there&#8217;s some things I have to change for gCalWall in 3.0 to work properly and I&#8217;ve already got a development build started. So, rather than try and maintain separate builds, I&#8217;m jumping ship from 2.x and moving on to 3.x&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/04/23/gcalwall-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well the ratings are in&#8230;</title>
		<link>http://www.steili.com/wordpress/2009/03/20/well-the-ratings-are-in/</link>
		<comments>http://www.steili.com/wordpress/2009/03/20/well-the-ratings-are-in/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 05:16:09 +0000</pubDate>
		<dc:creator>brandon</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[gCalWall]]></category>

		<guid isPermaLink="false">http://www.steili.com/wordpress/?p=155</guid>
		<description><![CDATA[
and unfortunately they don&#8217;t look so hot. Now to be fair, the ratings/reviews are pretty decent from the folks who have taken the time to write them. They aren&#8217;t all positive, and some are downright rude, but unfortunate reality of the App Store is that (as Iliumsoft wrote) Apple really has designed the rating system [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.steili.com/wordpress/wp-content/uploads/2009/03/picture-1.png" alt="Picture 1.png" border="0" width="347" height="168" /></p>
<p>and unfortunately they don&#8217;t look so hot. Now to be fair, the ratings/reviews are pretty decent from the folks who have taken the time to write them. They aren&#8217;t all positive, and some are downright rude, but unfortunate reality of the App Store is that (as <a href="http://blog.iliumsoft.com/2009/03/20/rate-it-if-you-hate-it/">Iliumsoft wrote</a>) Apple really has designed the rating system to make it super simple for those who &#8220;hate it to rate it&#8221; and those who love it &#8230; to not rate it at all.</p>
<p>Now, I&#8217;m happy with what gCalWall has done. It has sold a &#8220;decent&#8221; amount of copies, and the free version has done very well. I&#8217;m never going to make it rich off the application (hell I&#8217;m never going to buy a broken down Honda off of it), but for being my very first attempt at building anything its done very well. Ultimately I took a lofty goal (capturing data from Google and getting onto the lockscreen) and for the most part I succeeded. I didn&#8217;t truly succeed, but the goal was impossible because Apple doesn&#8217;t allow access to the lockscreen. Ultimately, the failure of gCalWall is a failure of my own.</p>
<p>What do I mean by that? Well, I mean that the ratings for gCalWall are very low, because I mis-judged that people wouldn&#8217;t mind taking a few extra seconds and setting the created image as a wallpaper. The ratings are low not because the application itself doesn&#8217;t work &#8211; but because of STUPID restrictions placed on the developers, and my own mis-judgement that people wouldn&#8217;t mind the extra steps for the much added benefit of having a useful lockscreen.</p>
<p>Keep this in mind. I want to dynamically update the lockscreen when you run gCalWall. There&#8217;s nothing I want more. Its been written in the app description and mentioned in every fricking write-up on the web. I WANT TO DO IT. APPLE WON&#8217;T LET ME. So please &#8211; if you like the app, review it on the App Store. If your only complaint is that it doesn&#8217;t set the wallpaper &#8211; TELL APPLE, but don&#8217;t give it 1 star reviews because of that.</p>
<p>Long story short &#8211; the rating system is broken. Go read about the <a href="http://blog.iliumsoft.com/2009/03/20/rate-it-if-you-hate-it/">feelings a successful developer</a> has about the process, and imagine how I feel. Not only am I getting my ass kicked by Apple once for limiting functionality, but I&#8217;m getting it kicked again by Apple for having a broken rating process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.steili.com/wordpress/2009/03/20/well-the-ratings-are-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
