by admin on June 16, 2010
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…]
by admin on June 14, 2010
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.