0
私は自分のInputviewの背景を透明なままにしようとしていますが、灰色にしかなりません。inputView swiftで灰色のレイヤーを取り除く方法
コードは次のとおりです。
let fakeField : UITextField = UITextField(frame: CGRect.zero)
//1
InputViewCollection = InputView(frame: CGRect(x: 0, y: 0, width: 0, height: 216)) //Intialize custom input view
InputViewCollection?.delegate = self //delegate
InputViewCollection?.dataSource = self //datasource
//2
InputViewCollection?.backgroundColor = UIColor.clear
self.fakeField.inputView = InputViewCollection //Assign input view
self.fakeField.keyboardAppearance = .default
self.view.addSubview(self.fakeField)
私はinputviewの透明な背景を残すことができますどのように?
おかげ
のようなバックグランドビュー のアルファ値を設定しよう?、α= 0.0、そして、すべてのビューは灰色です。それは動作しません。 – corocraft