-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from ricocrescenzio95/2-unify-formatter-and-par…
…seableformatstyle Unify formatter and parseableFormatStyle/Formatter
- Loading branch information
Showing
5 changed files
with
185 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// FormatPolicy.swift | ||
// | ||
// | ||
// Created by Rico Crescenzio on 15/04/22. | ||
// | ||
|
||
import Foundation | ||
|
||
/// Indicates when the bound value is updated on a ``SUITextField`` with format/formatter. | ||
/// | ||
/// Policy can specify when the conversion is made, either during typing or when text field did end editing. | ||
public enum FormatPolicy { | ||
|
||
/// Parses the text to bound value on every text insertion. | ||
case onChange | ||
|
||
/// Parses the text to bound value when text field end editing. | ||
case onCommit | ||
} |
Oops, something went wrong.