DJIShootPhotoStep
@interface DJIShootPhotoStep : DJIMissionStep
This class represents a step related to photo-shooting for a custom mission. By creating an object of this class and adding it to a custom mission, the user can shoot photos during the custom mission execution.
-
Initialized step for taking a single photo.
Declaration
Objective-C
- (instancetype _Nullable)initWithSingleShootPhoto;Return Value
Instance of
DJIShootPhotoStep. -
Initialized step for continous photo shooting.
Declaration
Objective-C
- (instancetype _Nullable)initWithPhotoCount:(int)count timeInterval:(double)interval;Parameters
countPhoto count.
intervalTime interval in seconds between shooting photos.
Return Value
Instance of
DJIShootPhotoStep.
View on GitHub
DJIShootPhotoStep Class Reference