Thanks for the help.
I need to tell my app.something like:
if the input QTmovie has a .whatever file extension …
etc. etc. etc.
I’m doing something like this that recognizes input movie width:
if (movieSize.width == 1600){
whatever
How would I code a file extension condition?
thanks.
Paul
If you have the full file path as an NSString, you can call pathExtension on it like this:
Then, you’d just add another condition to the if statement, like:
Hope that helps!