0
私は(UICollectionViewセル)チャット細胞にプレー画像をオーバーレイしようとしていますランダム3つのドット
をしかし、私はこの効果に気づきます私が使用するすべての画像。以下は、私が作成しているボタンのコードです。
let playButton: UIButton = {
let button = UIButton(type: .system)
button.setTitle("Play Video", for: .normal)
button.translatesAutoresizingMaskIntoConstraints = false
button.isUserInteractionEnabled = true
let image = UIImage(named: "play")
button.tintColor = UIColor.white
button.setImage(image, for: .normal)
return button
}()
これは、シミュレータでは次のようになります。
なぜ私のUIImageは、これらの点を追加しでしょうか?
Play Imageのテキストを表示する必要がないので、UIButtonのsetTitleを削除します。 –
ボタンのタイトルで、このコード行を削除する 'button.setTitle(" Play Video "、for:.normal)'から 'playButton' @Ricky Avina –