I am looking to make a iPhone app for a simple anonymous discussion website I launched this week (blurba.com).
I would like it to be native, available for free download in the app store.
I am looking for the fastest, easiest way to do this.

I have been looking at these options.
1. Build a native app in Obj-C
2. Build with JQ touch, use PhoneGap to make it native

I am more than open to other ideas (maybe frameworks I don't know about, to make this easier?)

NEEDS:
Ajax requests via GET and POST.
Data received back in JSON and displayed.

PS. I have NO experience making iPhone web apps, but do have basic experience with iPhone development

THANKS,

link|improve this question

2  
Have you considered making a mobile version of your site instead? – Nathan Wheeler Dec 30 '09 at 19:28
Have considered, but i really think a native iPhone app will be the best way to get exposure. Both would be nice, but an app is a must. – Douglas Dec 30 '09 at 19:30
3  
a native iPhone app is the opposite of "fastest easiest" way to do anything. A mobile version of your site will be the "fastest easiest" way to do something. Especially since you don't have to submit anything to be approved by the App Store. You can make a web app look just like a native app with very little effort. For example look at www.wunderground.com with an iPhone. – Jarrod Roberson Dec 30 '09 at 19:42
feedback

8 Answers

up vote 3 down vote accepted

Good, Fast, Cheap. Pick two.

If you want it fast and good, you're going to have to pay someone who knows what they're doing which means it will be expensive.

It seems weird that you say you have no experience making web apps, yet you said that you "launched" a discussion website and your StackOverflow bio says "I am a web developer using PHP, MySQL, jQuery." So which is it?

Is your site based on WordPress or some CMS? Interfacing with that will depend upon the API the CMS provides. You will probably have to roll your own JSON requests. You don't need AJAX if you're building a native iPhone app. The J in AJAX means JavaScript. It's only relevant if you are accessing data from a web page which you wouldn't be in a native app.

Anyhow, sounds like you've got some big ideas here, but you're going to have to crawl before you walk.

Best regards,

link|improve this answer
Oh, i meant web app on iPhone OS. Never done that. But, yeah, I do regular data-driven websites. And I DO need to access the server. I have my PHP pages (on the site) shoot back JSON, so i will need to parse that. – Douglas Dec 30 '09 at 19:46
Gotcha. Well, you're asking how to build a native app which is different from building a web app for iPhone. There are whole books dedicated to building web apps for the iPhone, but if you want something in the App Store, you wouldn't want to go that route, so I'm failing to see the relevance of your comment about web apps. Anyhow, parsing JSON on the iPhone is pretty simple. There are numerous libraries out there that convert JSON to NSArrays and NSDictionaries. I use this one: code.google.com/p/json-framework/issues/detail?id=13 but there are other good ones out there. – Matt Long Dec 30 '09 at 19:59
feedback

Much depends on what the goal of your app is. Here are a few possibilities I can think of:

If the goal of your app is:

  1. To give your users an easy way to get to your website from their phones then you could simply describe how to save a book mark from safari onto their home screen

  2. To put your website as an app into the app store to gain exposure and make it simple for your users to find the app. You can use Dashcode to build a simple application that just launches safari to your URL

  3. If you want to launch your website with information about the phone such as phone type, unique id (UDID) and location. You can write a simple application in xcode that looks up the information and then runs mobile safari with your website URL and passing the info... something like this for example...


    @implementation AppDelegate

    - (void)applicationDidFinishLaunching:(UIApplication *)application {
        [self startLocating];

    }

    -(void)startLocating {
        [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
        locationManager = [[CLLocationManager alloc] init];
        iterations = 0;

        locationManager.delegate = self;
        locationManager.distanceFilter = 100; 
        locationManager.desiredAccuracy = kCLLocationAccuracyBest;
        [locationManager startUpdatingLocation];
    }

    - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation { 
        iterations++;
        if(iterations == 2) {
            [manager stopUpdatingLocation];
            [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

            double latitude  = newLocation.coordinate.latitude+0.0;
            double longitude = newLocation.coordinate.longitude+0.0;
            [self goThere:latitude longitude:longitude];
        }
    }

    - (void)goThere: (double)latitude longitude:(double)longitude {
        NSString *baseURL = @"http://www.obsoletetechnology.org";

        NSString *newURL = [NSString stringWithFormat:@"%@?uid=%@&iPhone_type=%@&lat=%f&long=%f",
                            baseURL, 
                            [[UIDevice currentDevice] uniqueIdentifier], 
                            [self whatAmI],
                            latitude,
                            longitude];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:newURL]];
    }

    - (NSString *) whatAmI {
        struct utsname myUtsName;
        uname(&myUtsName);
        return [NSString stringWithCString:&myUtsName.machine[0] encoding:NSASCIIStringEncoding];
    }

    - (void)dealloc {
        [window release];
        [super dealloc];
    }
    @end
  1. To mix elements of the phones capabilities with your web sites functions. You should look into the documentation for the uiWebView class in the iPhone SDK. From here out the possibilities are as endless as your imagination and about as time consuming :)
link|improve this answer
feedback

Eclipse is one of the best and easiest (both) frameworks I ever seen. You can develop iPhone web apps with eclipse. I suggest you take a look at this tutorial.

link|improve this answer
feedback

The "easiest" way to get a Web property on the app store (which seems to be your goal) - create an app that does nothing but create a UIWebView. That Web View is more or less a shell for the mobile version of your site. If you want it to have an iPhone look and feel, you would craft a mobile version of your site that takes advantage of WebKit features.

You may find that there are things you miss out on by not going completely native, but the above approach is the quickest.

link|improve this answer
feedback

Take a look at Dashcode. It's part of the SDK and though your App is not going to be in the App store, it's a real web App.

http://developer.apple.com/iphone/library/documentation/AppleApplications/Conceptual/Dashcode%5FUserGuide/Contents/Resources/en.lproj/Introduction/Introduction.html

http://developer.apple.com/safari/

Here are some existing Dashcode Web Apps

http://www.apple.com/webapps/

-t

link|improve this answer
feedback

To do what you're trying to do, I would suggest using iWebkit and then using PhoneGap to make it native. iWebkit does not have the sliding interface, but is much easier to use and will work with PHP much, much better than JQuery. Plus iWebkit has a [forum] (community.iwebkit.net) where you can get help with anything, and a lot of people there have experience with PhoneGap, NimbleKit and other similiar tools.

link|improve this answer
feedback

Check out iWD - http://www.mgateway.com/iwd.html

It really is the fastest framework currently available for iPhone app development.

link|improve this answer
feedback

If you are comfortable enough with javascript, you can try SproutCore or Sencha :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.