Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS Build a Self-Destructing Message iPhone App Capturing Photo and Video Using UIImagePickerController Saving the Media

Jay Mayu
Jay Mayu
6,805 Points

The path method doesn't return a string

I'm following this tutorial in iOS 8 and when I try the following code I get a compiler warning saying the method path returns a CGPathRef instead of NSString.

 self.videoFilePath = [[info objectForKey:UIImagePickerControllerMediaURL] path];

XCode 6 suggesting to change it as below

 self.videoFilePath = (__bridge NSString *)([[info objectForKey:UIImagePickerControllerMediaURL] path]);

any thoughts on this?

1 Answer