Почему UITableView идет ниже TabBar? - PullRequest
0 голосов
/ 04 марта 2019

Вот как это выглядит в настоящее время:

Изображение здесь

Это мой текущий код:

override func viewDidLoad() {
    super.viewDidLoad()

    self.view.backgroundColor = UIColor(red: 4/255, green: 4/255, blue: 4/255, alpha: 1.0)
    self.navigationController?.navigationBar.barStyle = .black
    self.navigationController?.navigationBar.tintColor = UIColor.white
    self.navigationItem.title = "Test"
    self.navigationController?.navigationBar.prefersLargeTitles = true

    // Get main screen bounds
    let screenSize: CGRect = UIScreen.main.bounds
    let screenWidth = screenSize.width
    let screenHeight = screenSize.height


    myView.frame = CGRect(x: 0, y: 0, width: screenWidth, height: 150)
    myView.backgroundColor = .red
    self.view.addSubview(myView)



    myTableView.frame = CGRect(x: 0, y: myView.frame.size.height, width: screenWidth, height: screenHeight-myView.frame.size.height-(navigationController?.navigationBar.frame.size.height)!-(tabBarController?.tabBar.frame.size.height)!)
    print("SCREEN: \(screenHeight)")
    print("TABLEVIEW: \(myTableView.frame.size.height)")
    myTableView.dataSource = self
    myTableView.delegate = self
    myTableView.backgroundColor = .blue
    myTableView.layer.borderWidth = 3

    myTableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")

    self.view.addSubview(myTableView)
}

Похоже, у меня естьзакодировал это правильно.Также в инспекторе атрибутов раскадровки я снял отметку Расширить края: под нижней полосой .Есть идеи?

1 Ответ

0 голосов
/ 04 марта 2019

Угадайте, но, вероятно, маска автоматического изменения размера переведена в ограничение.Нарушение вашего макета в результате.Попробуйте:

myView.autoresizingMask = []
myTableView.autoresizingMask = []

// or alternatively

myView.translatesAutoresizingMaskIntoConstraints = false
myTableView.translatesAutoresizingMaskIntoConstraints = false

Но не имеет значения, правильно ли все настроено или нет, потому что вы вычисляете фактический макет вручную.Попробуйте вместо этого использовать Auto Layout:

    myView.translatesAutoresizingMaskIntoConstraints = false
    self.view.addSubview(myView)

    myView.topAnchor.constraint(equalTo: self.view.topAnchor).isActive = true
    myView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor).isActive = true
    myView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor).isActive = true
    myView.heightAnchor.constraint(equalToConstant: 150).isActive = true

    myTableView.translatesAutoresizingMaskIntoConstraints = false
    self.view.addSubview(myTableView)

    myTableView.topAnchor.constraint(equalTo: myView.bottomAnchor).isActive = true // making myTableView to lie just below myView
    myTableView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor).isActive = true
    myTableView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor).isActive = true
    myTableView.bottomAnchor.constraint(equalTo: self.view.bottomAnchor).isActive = true
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...