- What devices support the full drag and drop experience?
a) Only iPhone.
b) Only iPad.
c) Both iPhone and iPad.
- What kind of object do you have to provide to start a drag session?
a) A UIDragItem object.
b) A UIDragInteraction object.
c) An NSItemProvider object.
- How can you check whether your app can handle a certain drop action?
a) By checking the type of object that is associated with the drop action.
b) By limiting the type of objects that can be used in your drag session.
c) You receive a special error type if the app failed to handle the drop.
- How is the drag and drop experience limited on iPhone?
a) You can only start drag sessions on iPhone.
b) Your app can only implement drop interactions on iPhone.
c) Drag and drop is limited to the currently-open app.
- What do you have to do to support drag and drop on an iPhone?
a) You must manually enable...