- December 17, 2024
- Mins Read
use_frameworks!
pod ‘HTYTextField’
…
pod install
to install the dependencies.Just clone this repository or download it in zip-file. Then you will find source files under HTYTextField directory. Copy them to your project.
import HTYTextField
@IBOutlet weak var emailTextField: HTYTextField!
@IBOutlet weak var passwordTextField: HTYTextField!
emailTextField.rightPlaceholder = “xxx@xxx.xx”
passwordTextField.rightPlaceholder = “6~12 digits”
A vertical stackview which takes subviews with different widths and adds them to it's rows with paddings, spacings etc.
AudioManager is a Swift package that provides a modular and easy-to-use interface for implementing audio feedback in your applications. It ...