UIView-Encapsulated-Layout-Width и LayoutConstraint - PullRequest
0 голосов
/ 15 июня 2019

Я получаю следующие ошибки при запуске приложения. Какие у меня проблемы со зрением?

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
2019-06-15 17:45:15.916490+0300 ...[3888:779219] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<SnapKit.LayoutConstraint:0x280cf51a0@MainTableViewController.swift#3209 ....DeviceTableViewCell:0x10c82cc00.width == 375.0>",
    "<NSLayoutConstraint:0x280be41e0 'UIView-Encapsulated-Layout-Width' ....DeviceTableViewCell:0x10c82cc00'cellId'.width == 0   (active)>"
)

Will attempt to recover by breaking constraint 
<SnapKit.LayoutConstraint:0x280cf51a0@MainTableViewController.swift#3209 ...DeviceTableViewCell:0x10c82cc00.width == 375.0>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.

 cell.snp.makeConstraints { (make) in
            make.top.equalTo(100)
            make.height.equalTo(205)
            make.width.equalTo(view.frame.width)
        }

1 Ответ

0 голосов
/ 15 июня 2019

Я думаю, что у вас есть 2 ограничения ширины для конкретного cell, так что проверьте это.

  • Перейдите к вашей раскадровке.
  • откройте правое боковое меню.
  • В верхней части щелкните инспектор размера и проверьте ограничения.

enter image description here

Или попробуйте изменить приоритет вашей шириныограничить.

make.width.equalTo(view.frame.width).priority(999)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...