skip to Main Content

UIStackView overlaps in z-direction – Ios swift

I'm going to make a numPad using stackView this is my code private func setKeypadButton(num: Int) -> UIButton { let button = UIButton() button.setTitle(String(num), for: .normal) button.titleLabel?.font = .systemFont(ofSize: 50) button.setTitleColor(.black, for: .normal) button.frame.size = CGSize(width: 60, height: 60) button.tapPublisher…

VIEW QUESTION
Back To Top
Search