Category Archives: iPhone Development

MD5 Hash in Objective-C

After too much time spent searching the web via Google and getting a bunch of half answers and unfinished code for, what I though should be a very simple problem, I decided to make this post about how to create an MD5 hash from a string in Objective-c.

Also posted in OSX Development | 3 Comments

What is Model-View-Controller?

At first for me this concept was a bit hard to grasp, hopefully i can break it down to basics here. The Model-View-Controller is basically a design theory and a very logical organization of the parts or an iPhone application. Model is basically the classes that hold your application’s data. For example if you created [...]

Leave a comment

What are Actions?

Actions are methods that are part of your controller class and are declared with a special keyword, IBAction.  This keyword tells Interface Builder that this is an action and can be triggered by a control.  In short if you want to have interface objects in the nib (like buttons) trigger methods in the controller class [...]

Leave a comment