generamba_templates/touchin-custom-view/Code/View/view.swift.liquid

42 lines
631 B
Plaintext
Executable File

import UIKit
import TIUIKitCore
final class {{ module_info.name }}View: BaseInitializableView {
// MARK: - Properties
// MARK: - Initializable view
override func adddViews() {
super.addViews()
<#code#>
}
override func bindViews() {
super.bindViews()
<#code#>
}
override func configureAppearance() {
super.configureAppearance()
<#code#>
}
override func localize() {
super.localize()
<#code#>
}
override func configureLayout() {
super.configureLayout()
<#code#>
}
// MARK: - Actions
}