iOSTableRowAction
From Xojo Documentation
Class (inherits from Object)
This class is supported on Mobile (iOS). Use #If...#Endif with the Target... constants to ensure you only use this class where it is supported. |
New in 2016r2
An iOSTableRowAction represents a single action that a user can take when swiping horizontally on an iOSTable row. Multiple actions may be added. As of iOS 8 an action is presented as a button near the trailing edge of the row. This class is used in conjunction with the iOSTable.ActionsForRow event.
Properties | ||||
|
Enumerations | |
|
Constructors | |
|
Notes
This class is used in the iOSTable.ActionsForRow event to set up the actions. The iOSTable.RowAction event is called when an action is used. This is how you would set it up in the iOSTable events:
Event ActionsForRow(section As Integer, row As Integer) As iOSTableRowActions()
Var actions(1) As iOSTableRowAction
' Create the More button
actions(0) = New iOSTableRowAction(iOSTableRowAction.Styles.Normal, "More...", "More")
' Create the Delete button
actions(1) = New iOSTableRowAction(iOSTableRowAction.Styles.Destructive, "Delete", "Delete")
Return actions
End Event
Event RowAction(section As Integer, row As Integer, actionTag As Auto)
Select actionTag
Case "More"
// ... show more info
Case "Delete"
// ... delete something
End Select
End Event
Var actions(1) As iOSTableRowAction
' Create the More button
actions(0) = New iOSTableRowAction(iOSTableRowAction.Styles.Normal, "More...", "More")
' Create the Delete button
actions(1) = New iOSTableRowAction(iOSTableRowAction.Styles.Destructive, "Delete", "Delete")
Return actions
End Event
Event RowAction(section As Integer, row As Integer, actionTag As Auto)
Select actionTag
Case "More"
// ... show more info
Case "Delete"
// ... delete something
End Select
End Event