public interface CPListTemplateDelegate
| Modifier and Type | Interface and Description |
|---|---|
static interface |
CPListTemplateDelegate.Block_listTemplateDidSelectListItemCompletionHandler |
| Modifier and Type | Method and Description |
|---|---|
void |
listTemplateDidSelectListItemCompletionHandler(CPListTemplate listTemplate,
CPListItem item,
CPListTemplateDelegate.Block_listTemplateDidSelectListItemCompletionHandler completionHandler)
The user has selected an item in the list template.
|
void listTemplateDidSelectListItemCompletionHandler(CPListTemplate listTemplate, CPListItem item, CPListTemplateDelegate.Block_listTemplateDidSelectListItemCompletionHandler completionHandler)
Your app has an opportunity to perform any necessary operations to prepare for completing this item selection. The list template will display a spinner after a short delay.
You must call the completion block after your app has finished loading and updated its UI.
listTemplate - The list template containing this itemitem - The item selected by the usercompletionHandler - A completion block you must call after you have updated your UI.