i am getting message on xCode Log when i lunch my app developed by Swift 4 , i have tableview have multiple different cell's about 12 different cell's , that warning message i am getting is :
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2017-08-21 09:27:57.404497+0300 muzeit[6449:2211903] [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.
(
"<NSLayoutConstraint:0x174481770 V:|-(0)-[UIImageView:0x107a09eb0] (active, names: '|':UIView:0x107a09d10 )>",
"<NSLayoutConstraint:0x174481860 V:[UIImageView:0x107a09eb0]-(-60)-| (active, names: '|':UIView:0x107a09d10 )>",
"<NSLayoutConstraint:0x1744818b0 UIImageView:0x107a09eb0.centerY == UIView:0x107a09d10.centerY (active)>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x1744818b0 UIImageView:0x107a09eb0.centerY == UIView:0x107a09d10.centerY (active)>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
2017-08-21 09:27:57.492890+0300 muzeit[6449:2211903] [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.
(
"<NSLayoutConstraint:0x17048b770 V:|-(0)-[UIImageView:0x107a30c30] (active, names: '|':UIView:0x107a30a90 )>",
"<NSLayoutConstraint:0x17048b860 V:[UIImageView:0x107a30c30]-(-60)-| (active, names: '|':UIView:0x107a30a90 )>",
"<NSLayoutConstraint:0x17048b8b0 UIImageView:0x107a30c30.centerY == UIView:0x107a30a90.centerY (active)>"
)
I've tried to google it to find some solution how to solve it , i couldn't find clear answer , also the breakpoint dose not show the constraint has the issue !
any idea ?