Added missing function
This commit is contained in:
parent
2df2979d8f
commit
d9f7da35f1
|
|
@ -3,6 +3,7 @@
|
|||
### 0.9.11
|
||||
- **[Breaking change]**: Renamed `NumberFormat`'s `allOptions` to `allCases`
|
||||
- **Fix**: Closure syntax fix. New closure naming.
|
||||
- **Fix**: Added missing `BasePlaceholderView` protocol function.
|
||||
|
||||
### 0.9.10
|
||||
- **Remove**: Removed unused scheme & target
|
||||
|
|
|
|||
|
|
@ -75,6 +75,10 @@ open class BasePlaceholderView: UIView, InitializableView {
|
|||
open func localize() {
|
||||
// override in subclass
|
||||
}
|
||||
|
||||
open func configureLayout() {
|
||||
// override in subclass
|
||||
}
|
||||
}
|
||||
|
||||
public extension BasePlaceholderView {
|
||||
|
|
|
|||
Loading…
Reference in New Issue