Looks really great!!!!
http://www.raywenderlich.com/rwpodcast
Dom
OK slightly off topic – but this is my first assignment (presentation) for my iOS rogue like/RPG game
http://dungeonbard.com/2012/09/02/latest-screenshot-on-screenshotsaturday-com/
Check out number 96 of week 96 (pure coincidence)
Dom
Just in case you are interested I am keeping a developer diary on my university assignment (building a iPhone RPG/Roguelike game)
Dom
iOS and MAC conference
http://swipeconference.com.au/sessions
Student price around $500 for a two day conference
Dom
I am replacing my storyboards with good old fashion XIB’s to make my app compatible with pre iOS 5 devices
1. Click on your target and set the storyboard to blank
2. Create a new class that is a subclass of
UIViewController called MainViewController and make sure the create XIB is selected
3. Add the following to the existing AppDelegate.h file
#import “MainViewController.h”
@property (strong, nonatomic) MainViewController *viewController;
4.In didFinishLaunchingWithOptions in MainViewController.m
add the following:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.viewController = [[MainViewController alloc] initWithNibName:@”MainViewController” bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];
return YES;
And behold the new XIB starts as expected – of course I now need to extract all the UI elements out of the existing storyboard…
Dom
Looks very interesting…$A600 for 2 days…I think its waitlist only now unfortunately…
http://devdays.stackoverflow.com/sydney/
Dom
Early days for this one but a focus on mobile technologies looks very cool – 23/24 April
Dom
p.s Thanks to Craig for picking up my error!!!!