I have 2 hard drives in my Mac. One runs 10.7 for my daily work editing videos and such and I won't upgrade that drive, I needs it to stay 10.7. The other drive runs 10.10 which I just use for programming / Xcode so everything is up to date.
I added AVFoundation framework to an app to export .mp4 videos and it works great on 10.10, but not 10.7 where I want to use it.
After scanning my code everything is 10.7 compliant except for this method which was introduced in 10.9
it replaced this code that was depreciated as of 10.9
I tried to add the finishedWriting method but it is no longer a method that exists and I get a red error which is expected. Can this be fixed so I can use it on 10.7? Is there a way to bring in an older AVFoundation framework to solve this issue?
Thanks
I added AVFoundation framework to an app to export .mp4 videos and it works great on 10.10, but not 10.7 where I want to use it.
After scanning my code everything is 10.7 compliant except for this method which was introduced in 10.9
[AVAssetWriter finishWritingWithCompletionHandler:^]
it replaced this code that was depreciated as of 10.9
[AVAssetWriter finishWriting]
I tried to add the finishedWriting method but it is no longer a method that exists and I get a red error which is expected. Can this be fixed so I can use it on 10.7? Is there a way to bring in an older AVFoundation framework to solve this issue?
Thanks