public void OnShowActionSheetWithDestructiveButton() { IGActionSheet.ShowActionSheet("Title", "Cancel", () => Debug.Log("Cancel Clicked"), "Destroy All!", () => Debug.Log("Destroy All Clicked"), ActionSheetMoreOptions, index => Debug.Log(ActionSheetMoreOptions[index] + " Clicked")); }
public void OnShowActionSheet() { IGActionSheet.ShowActionSheet("Title", "Cancel", () => Debug.Log("Cancel Clicked"), ActionSheetOptions, index => Debug.Log(ActionSheetOptions[index] + " Clicked")); }