iPhone development
RSS icon Email icon Home icon
  • Icons for your iPhone settings

    Posted on November 2nd, 2009 Kare 1 comment

    bjango.com has an interesting article about how and why many developers are moving their settings into the app itself. They even have some icons you can use, both for the tab bar and the toolbar.

  • Finally released my first App

    Posted on September 4th, 2009 Kare 5 comments

    I finally released my first iPhone app, Repetitions, today. It’s going to be very interesting to see how it does. After reading about how other apps have done I’m not very optimistic, especially since the release date of my app was set to 25 August (when it was accepted by Apple) instead of today when it was actually released. Which of course means my app now appears on page 6 of the “Health and Fitness” category in the AppStore. Where no one will find it. But I will be releasing an update soon anyway, which should put it on the first page at least for a couple of days.

  • Added mySettings to GitHub

    Posted on June 26th, 2009 Kare No comments

    I finally added mySettings to GitHub, using the marvel that is hg-git. It allows me to continue using mercurial, and to push and pull from git repositories. The project on GitHub can be found here. The main place for mySettings will still be on BitBucket, I’m just uploading the code to GitHub to see if it will attract more users and contributors.

  • Customising a table view with mySettings

    Posted on May 21st, 2009 Kare 6 comments

    I’ve been working on my iPhone app lately (for performing physical exercises like the ones you get from a physiotherapist, but more about that later) so I haven’t written anything for a long time. I thought I’d rectify that by showing how to create highly customised UIs with fairly little coding. I recently added support for delegates to mySettings and that opened up a lot of possibilities, even with only one method in the delegate (for now).

    As an example, here’s the configuration screen for my app:
    Configuration screen

    Read the rest of this entry »

  • Another way to create Settings views

    Posted on May 4th, 2009 Kare No comments

    Craig Hockenberry has also created an API for Settings views. But unlike mySettings his API creates the views from code instead of plists. Like this:

    1. - (void)constructTableGroups
    2. {
    3. NSMutableArray *cells = [NSMutableArray array];
    4. IFTextCellController *textCell = [[[IFTextCellController alloc] initWithLabel:@"Text" andPlaceholder:@"Placeholder" atKey:@"sampleText" inModel:model] autorelease];
    5. [cells addObject:textCell];
    6. IFSwitchCellController *switchCell = [[[IFSwitchCellController alloc] initWithLabel:@"Switch" atKey:@”sampleSwitch” inModel:model] autorelease];
    7. [cells addObject:switchCell];
    8. tableGroups = [[NSArray arrayWithObject:cells] retain];
    9. }

    Check it out at http://furbo.org/2009/04/30/matt-gallagher-deserves-a-medal/ .