Tag Archives: iOS
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 }