UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

UIButton's titleLabel's color does not change

Forums > iOS

Hey guys. As above, for some reasone Title color does not change. Here is my code:

import UIKit

final class RemoveFromFavButton: UIButton {

    override init(frame: CGRect) {
        super.init(frame: frame)
        configure()
    }

    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    convenience init(title: String) {
        self.init(frame: .zero)
        setTitle(title, for: .normal)
    }

    private func configure() {
        translatesAutoresizingMaskIntoConstraints = false
        titleLabel?.font      = UIFont.systemFont(ofSize: 15, weight: .semibold)
        backgroundColor       = .systemBlue
        titleLabel?.textColor = .black
        #warning("why the color does not change")
    }
}

Any suggestions? Button is initialised in UICollectionReusableView if that could have anything to do with that anomaly. Many thanks for help

3      

If you try the setTitleColor method, does it work?

3      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.