Posts Tagged "iOS Development"

How to display a UIImage from an NSURL

Posted on Jun 15, 2013

If you’re displaying images from the main iOS bundle, things are fairly straightforward: self.imageView.image = [UIImage imageNamed:@"Amy.png"]; But if you have an NSURL to your image then...

Learn More

How to use Core Data with multiple Store Files

Posted on Jun 12, 2013

Sometimes it can be useful to split your Core Data Store File across multiple files. For example, one file could live on the local file system, while the other could live in iCloud. We can do this by telling...

Learn More

How to create an NSDate object

Posted on Apr 29, 2013

The easiest way to create an NSDate object is to create “right now” with our convenience method date: NSDate *myDate = [NSDate date]; But if you want to create a date object with a date such as...

Learn More