代码之家  ›  专栏  ›  技术社区  ›  user979331

添加UITableView backgroundView with UIView with UIButton

  •  0
  • user979331  · 技术社区  · 6 年前

    UITableView 背景视图 UIView UIView视图 UIButton 但是 没有出现。我做错什么了?

    let view: UIView = UIView(frame: CGRect(x: 0, y: 0, width: self.menuTable.bounds.size.width, height: self.menuTable.bounds.size.height))
    
    let loginButton: UIButton = UIButton(frame: CGRect(x: 0, y: 0, width: 200, height: 200))
    loginButton.setTitle("Login", for: .normal)
    loginButton.backgroundColor = UIColor.white
    loginButton.tintColor = UIColor.black
    loginButton.addTarget(self, action:#selector(self.pressedConnection), for: .touchUpInside)
    view.addSubview(loginButton)
    
    self.menuTable.backgroundView = view
    self.menuTable.separatorStyle = .none
    
    0 回复  |  直到 6 年前