-
Recent Tweets
-
RT @USABS: A salute to Matt Antoine, who took his final competitive run on Friday. You’re a great example of what our values of teamwork, c… 4 years ago
-
RT @omegawatches: #FirstMan / #Moonwatch @FirstManMovie will soon be launching in cinemas! Spot the #OMEGA watches in this incredible telli… 4 years ago
-
RT @omegawatches: #SEAMASTER AT 70 2008. Seamaster #AquaTerra. The first appearance of the famous “teak” dial and glowing Super-Luminova.… 4 years ago
-
Category Archives: Programming
iOS: Prompting for App Ratings Using Appirater
I was looking for an easy to implement method to prompt for user ratings of my apps and found a great method here: Appirater. The goal of Appirater is to encourage your satisfied user’s to rate your app. To use … Continue reading
Posted in Apple, Programming
Leave a comment
LocaDo 1.1 Submitted to The AppStore
I submitted LocaDo 1.1 to the app store this weekend and wanted to give a sneak peak. New features include: A sleep mode for improved battery life, up to 60% better in my tests. Metric to do saving for our … Continue reading
Posted in Apple, Programming, Technology
Leave a comment
Example Objective-C Code for iOS/iPhone/iPad
Learning a new programming language can be difficult and sometimes developer documentation just doesn’t convey the message clearly and you need an example. Coming from PHP where every function is documented with example code, I feel this is one area … Continue reading
Posted in Apple, Programming
Leave a comment
Car Pool Party Website
The website for Car Pool Party iPhone app.
Posted in Apple, Business, Entrepreneur, Programming
Leave a comment
Dynamically adding UIActionSheet buttons
Today’s useful Objective C resource, dynamic buttons on a UIActionSheet. Awesome. The UIActionSheet is a very useful class, and I use it frequently in my apps, but its initialisation method doesn’t allow you to add buttons from an array. Instead … Continue reading
Posted in Apple, Programming
Leave a comment
How to Format NSDate in Objective-C Tutorial iPhone / Cocoa – edrackham
Today’s helpful tidbit, formatting NSDate’s. How to format NSDate using NSDateFormatter iPhone Xcode TutorialSo, you’re making an iPhone or iPad app, and want to know how to format an NSDate in Cocoa? Formatting NSDate in Objective-C is actually not too … Continue reading
Posted in Apple, Programming
Leave a comment
alloc NSMutableArray and storing objects
Today’s interesting programming tidbit… If assigning an array to another NSMutable Array such as this: self.listData = [self userData]; You don’t need to alloc the listData array first, although i’m guessing it’s probably a good idea. However if you want … Continue reading
Posted in Apple, Programming, Technology
Leave a comment
Objective C – iPhone Programming – FMDB/Sqlite
I’m in the process of learning Objective C with the goal of making iOS apps. I’ve come across some great resources so I figured I’d share them here as I go. Today I’m working with Sqlite databases. I used the … Continue reading
Posted in Apple, Programming
Leave a comment