New Issue Checklist
🚫 If this template is not filled out your issue will be closed with no comment. 🚫
Issue Info
| Info |
Value |
| Platform |
ios |
| Platform Version |
17.5 simulator |
| SnapKit Version |
5.7.1 |
| Integration Method |
cocoapods |
code writed in viewDidLoad() as follow, I set height specifically, but i get the view which height is 240.667.
playerVC.view.snp.makeConstraints { make in
make.top.equalToSuperview().offset(47)
make.left.right.equalToSuperview()
make.height.equalTo(240.75)
}
playerVC is a UIViewController already added to currentVC,

New Issue Checklist
🚫 If this template is not filled out your issue will be closed with no comment. 🚫
Issue Info
code writed in viewDidLoad() as follow, I set height specifically, but i get the view which height is 240.667.

playerVC.view.snp.makeConstraints { make in
make.top.equalToSuperview().offset(47)
make.left.right.equalToSuperview()
make.height.equalTo(240.75)
}
playerVC is a UIViewController already added to currentVC,