Оттенок на изображении кнопки swift Xcode - PullRequest
0 голосов
/ 02 февраля 2019

Я хочу добавить 35% прозрачный оттенок на кнопку с изображением в моем проекте XCode. Посоветуйте мне, как это сделать в моем случае

Мой код:

// Button
        let aButt = UIButton(type: .custom)
        aButt.frame = CGRect(x: X, y: Y, width: W, height: H)
        aButt.tag = i
        aButt.setTitle("\(peObj[EVENTS_TITLE]!)", for: .normal)
        aButt.contentVerticalAlignment = .bottom
        aButt.titleLabel?.font = UIFont(name: "OpenSans-Bold", size: 13)
        aButt.setTitleColor(UIColor.white, for: .normal)
        aButt.addTarget(self, action: #selector(popularEventButt(_:)), for: .touchUpInside)
        getParseImage(object: peObj, colName: EVENTS_IMAGE1, button: aButt)
        aButt.imageView?.contentMode = .scaleAspectFill
        aButt.clipsToBounds = true
        aButt.backgroundColor = UIColor.lightGray
        aButt.layer.cornerRadius = 8
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...