I'm currently working on enabling a DJI product to execute waypoint missions autonomously, adapting from a DJI tutorial (https://developer.dji.com/mobile-sdk/documentation/ios-tutorials/GSDemo.html). So I'm trying to integrating all the processes into one function. Here are the two completion blocks that I would have to integrate:
[[self missionOperator] uploadMissionWithCompletion:^(NSError * _Nullable error) {
if (error){
ShowMessage(@"Upload Mission failed", error.description, @"", nil, @"OK");
}else {
ShowMessage(@"Upload Mission Finished", @"", @"", nil, @"OK");
}
}];
and:
[[self missionOperator] startMissionWithCompletion:^(NSError * _Nullable error) {
if (error){
ShowMessage(@"Start Mission Failed", error.description, @"", nil, @"OK");
}else
{
ShowMessage(@"Mission Started", @"", @"", nil, @"OK");
}
}];
In order for the second one to run successfully, the first one must first execute completely. This doesn't seem like a hard problem, but I could not figure it out after trying to add delays or dispatches.
Any help is appreciate. Thanks.
From the iOS version of the docs you linked, the docs for
-[DJIWaypointMissionOperator uploadMissionWithCompletion:]
say:So, you would do something like this: