iPhone Application UIAlertView Alert Tutorial

One simple bit of code that I used in the iPhone application that I recent put together was creating a an alert, much like you see when you receive a SMS message.

When creating an alert view an iPhone application you allocation and initialize an instance of the UIAlertView. With alert views it is generally custom to alloc and initWithTitle. An example would be:

UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"Do you like Alerts?"

[click to continue…]

{ 0 comments }

My Journey Through iPhone Application Development

Hello World! I’m currently working on an iPhone app for the company I work for, Flanders Filters. This is my first endeavor into the world of iPhone application development. I have learned so much and I’m currently learning a lot about the concept of MVC (Model View Controller) and object-oriented programming in general. The object-oriented approach to programming makes perfect sense. I find myself thinking about every day things in an object-oriented way.

My goal for the next month is to complete the application and break the development process down into a series of blog posts to help others in the areas I felt were not very clear when searching on the internet and in books I’ve read. I would also like to include code samples that can be used repeatedly in the iPhone Development process.

{ 0 comments }

Ride Digital Wave Website Launch

June 10, 2010
Ride Digital Wave Productions - ridedigitalwave.com

Ride Digital Wave is a website that I recently coded up for a client. The site is simplistic in design, it was photoshopped by the client and I broke it up in a website for Bryan, the client.
The site was not too complex, pretty much a basic HTML and CSS layout. The PrettyPhoto jquery [...]

Read the full article →

CSS Question Answered by Chris Coyier

April 7, 2009
CSS Question Answered by Chris Coyier of CSS-Tricks

Chris Coyier, of CSS-Tricks, tweeted the other day asking for questions for an upcoming article he’s writing for Smashing Magazine. I’m currently working on a website for a design course that I’m taking and had a couple questions regarding background-images. I produced a table using PHP and wanted the current date to be [...]

Read the full article →