FUITakePhotoAttachmentActionDelegate
public protocol FUITakePhotoAttachmentActionDelegate : class
The delegate protocol for FUITakePhotoAttachmentAction
.
-
This function is invoked when a photo is taken from camera.
Important
URL’s with scheme:
assets-library
refer to assets in the user’s Photos library. These assets may be deleted by the User, or cleaned-up by the library. Use thePHAssets
API’s to access the image data directly, and create a persistent copy of the file, if one is needed.Declaration
Swift
func takePhotoAttachmentAction(_ action: FUITakePhotoAttachmentAction, didTakePhotoAt url: URL)
Parameters
action
The
FUITakePhotoAttachmentAction
object.url
The
assets-library
URL of the photo captured.