Another week gone by, and welcome to this listing of resources shared in the last week in order of popularity. This week once again yet another beta was released of iOS 5 for us to install. The release date is slowly creeping up. Some great resources were posted on the site including open source libraries […]
Tag: objective-c
For those unfamiliar with the term behavioral driven development testing (BDD) frameworks are used so that you can test applications using logical English like syntax. I have come across an open source framework designed specifically for iOS devices. What’s cool about this specific framework is that it can easily be attached to Objective-C methods, […]
Found a very interesting tool that I have been using today that is absolutely brilliant for anyone programming in Objective-C on iOS and Mac. The tool is known as Accesorizer. What this tool does is allow you to generate repetitive Objective-C code using fully customizable parameters. It’s tough to explain exactly what this tool does […]
Communicating web services can be a pain on iOS. Some of the Cocoa classes for web communication are not available which doesn’t help. Fortunately there are a number of open source projects that have made things easier for communicating with web services in Objective-C. One such project is Restkit, and what Restkit provides is a […]
It’s been another very active week for the site, and I appreciate everyone sharing the resources from this site. It really keeps things going. The community is getting more active, and there were so many great resources shared in the last week. If you have a specific resource you’d like to share there’s two great […]
I’ve extended the open source iPhone apps list with two great new apps. The quest for quality iPhone and iPad programming examples continues and both of these apps are app store apps that the creators generously decided to open source. While there are a lot of great examples on the list with the continuous […]
A few weeks ago I posted a short video similar to this one: UPDATE: Tutorial Has been posted! I’ve been asked since then when I would come out with the tutorial. I was finally able to get around to completing the source file, and I’ve added line by line (well pretty close) comments in plain […]
Randy McMillan sent me information on an example that he has posted this time illustrating the usage of Phonegap and iWebKit. I have created a short video demoing the example in action: Special Offer – Learn How To Create Mobile Apps With Phonegap – 42 Hours of Video At 75% Off – Click Here! No […]
The default behavior for a UITextField on pressing the return key is to execute the textFieldShouldReturn: method of the UITextFieldDelegate. What if we wanted to create similar behavior with a a UITextView which does not have an equivalent method and by default just creates a new line? Nick Dalton has come up with a snippet of […]
One of the things that makes the Objective-C language “different” from most other object oriented programming languages is that there is no simple command that allows you to print the subclasses of a class. I noticed this early on when using the language, and had to work around this. I don’t know why Objective-C doesn’t […]