PTCountCreateDelegate

@protocol PTCountCreateDelegate <NSObject>

A delegate used to respond to events from a PTCountCreate instance.

  • Notifies the delegate that a new group is selected.

    Declaration

    Objective-C

    - (void)countCreateDidSelectGroupName:(nullable NSString *)groupName
                                withColor:(nullable UIColor *)color;

    Swift

    optional func countCreateDidSelectGroupName(_ groupName: String?, with color: UIColor?)