uistackview extensions
import UIKit
extension UIStackView {
func addArrangedSubviews(_ views: [UIView]) {
views.forEach { addSubview($0) }
}
}
stack.addArrangedSubviews([headerLabel, textLabel, errorLabel, buttonStack])
recent posts
tags
archives
photos
friends
isak.me // 2023
ios, web, thoughts & notes (rss)
import UIKit
extension UIStackView {
func addArrangedSubviews(_ views: [UIView]) {
views.forEach { addSubview($0) }
}
}
stack.addArrangedSubviews([headerLabel, textLabel, errorLabel, buttonStack])