iPhone Developer - Developing Native & Webapps

iSlider NZRSS Coming... Coming... Coming...

NZRSS status update


I haven’t been doing much development in the past week due to an internal flash viral campaign (more about this at bottom of post), however we did receive some feedback on the NZRSS.

Firstly one mistake I had missed in the new RSS reader was the “Reachability”, as this app relies on an active network connection in order to work… Oops! :P , this is pretty simple however, for a sample source see the apple developer website here

In my case, this is really quite simple to implement, as I only need to check for the connection on the app launch, I included both Reachability.h & Reachability.m into my project, and import Reachability.h into my AppDelegate, and check it via the method below:

1
2
3
4
5
6
7
8
9
10
11
12
13
- (void)applicationDidFinishLaunching:(UIApplication *)application {
	NetworkStatus internetConnectionStatus = [[Reachability sharedReachability] internetConnectionStatus];
	if (internetConnectionStatus == NotReachable) {
		// no connection
		UIImageView *noConnection = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"noNetwork.png"]];
		[window addSubview:noConnection];
		[noConnection release];
	} else {
		// connection, continue normally
		[window addSubview:[navBarController view]];
	}
	[window makeKeyAndVisible];
}

The second thing wrong with the NZRSS was something so small I wet myself laughing, on my Article view I had created a menu (as mentioned in the previous post), in that menu if the article has a “full article” link, I showed a Safari button, thats right a “Safari” icon, the apple do not approve the use of this (is it just me or is the UIWebView not safari? LOL), anyways, I found a new icon for this, and fixed that issue (also renamed it to WWW).

Sooo what does this mean? yep another week or two to get it approved, back to the waiting game (Or should I say, back to working on my game while waiting for the approval).

Flash Viral Link: Tauranga Websites

Ok so this week i have been busy working on this internal viral, this is a piece of advertising we are trialing to help increase the website development Totali does, this was rushed, and not too well thought out, but in the end I am still happy with the outcome in the amount of time available.

This is a simple flash game, which is interactive on a couple of levels, firstly it requires the user to input a name and phone number, from here you will receive a call from our automated phone service with instructions on how to play the game.

After this is complete the game starts, you simply have to shoot the twitter birds, get as many twitter birds as you can in 60 seconds to claim your discount voucher for our “Spring into Action” website promotion.

Note(s): The more birds you get, the bigger the discount. This is set up to only call NZ phone numbers

Tags: , ,

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Close App
RSS Entries