Archive | iOS RSS feed for this section
iOS 5 – Problem Setting an Image for UINavigationBar Background

iOS 5 – Problem Setting an Image for UINavigationBar Background

iOS 5 has made it much, MUCH easier to set an image as the background of your UINavigationBar. There are dozens of tutorials out there that will get you there, and I tried a half dozen of them, but still couldn’t get it to work. The code itself is very simple, and here it is: [...]

Read full story Comments { 1 }
sqlite

iOS – FMDB is THE End to Your SQLite Nightmares

When you’re writing apps for iPad or iPhone, you’ve got a couple of options for you database solutions.  By far the best options (if it fits your app’s data needs) is Apple’s own Core Data which can use SQLite as it’s database store.  Core Data is fast, efficient, an object store, and provides some great integration [...]

Read full story Comments { 4 }
ios

iOS – Get the NSIndexPath for a UITableViewCell by Row and Section

Here’s a newby tip for iPhone and iPad developers…I am noob too I was trying to build an indexPath based on a row # and section, but none of the constructors I tried seemed to work…stuff like indexPathWithIndex: or indexPathWithIndexes:length. Back to the class reference for more reading. I found the answer in the NSIndexPath [...]

Read full story Comments { 0 }