开发者

UIVideoAtPathIsCompatibleWithSavedPhotosAlbum generates error implicit declaration of function, why?

开发者 https://www.devze.com 2022-12-30 13:24 出处:网络
In my project I am trying to save video to the iPhone after being taken by the camera. When I call the method:

In my project I am trying to save video to the iPhone after being taken by the camera.

When I call the method:

UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(path)

It reports the error:

Implicit dec开发者_运维问答laration of function 'UIVideoAtPathIsCompatibleWithSavedPhotosAlbum'

I've imported MobileCoreServices/UTCoreTypes.h

I was previously using this same code for saving camera pictures, and it worked fine.

In another class, in the same project, I am able to reference the UIKit method:

UIImagePNGRepresentation()

without any problems

So why does it give me this error?


After two hours of hunting I finally realized my project was set up for OS 3.0, and thus, the method was unavailable. It needed to be set for 3.1

0

精彩评论

暂无评论...
验证码 换一张
取 消