viewSafeAreaInsetsDidChange约束更新
This commit is contained in:
Binary file not shown.
@@ -4589,5 +4589,53 @@
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
||||
<BreakpointContent
|
||||
uuid = "9EF47E0B-6F13-446E-B20D-D257803ECD5D"
|
||||
shouldBeEnabled = "No"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
filePath = "OrderScheduling/ReviewFailed/ViewController/ReviewFailedController.swift"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "260"
|
||||
endingLineNumber = "260"
|
||||
landmarkName = "viewSafeAreaInsetsDidChange()"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "9EF47E0B-6F13-446E-B20D-D257803ECD5D - 641a45e4e8b60464"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "OrderScheduling.ReviewFailedController.viewSafeAreaInsetsDidChange() -> ()"
|
||||
moduleName = "OrderScheduling"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zd/Desktop/%E4%B8%AD%E9%81%93%E6%95%91%E6%8F%B4/OrderScheduling/OrderScheduling/ReviewFailed/ViewController/ReviewFailedController.swift"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "260"
|
||||
endingLineNumber = "260"
|
||||
offsetFromSymbolStart = "92">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "9EF47E0B-6F13-446E-B20D-D257803ECD5D - 199313feb1c692cb"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "closure #1 (SnapKit.ConstraintMaker) -> () in OrderScheduling.ReviewFailedController.viewSafeAreaInsetsDidChange() -> ()"
|
||||
moduleName = "OrderScheduling"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zd/Desktop/%E4%B8%AD%E9%81%93%E6%95%91%E6%8F%B4/OrderScheduling/OrderScheduling/ReviewFailed/ViewController/ReviewFailedController.swift"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "261"
|
||||
endingLineNumber = "261"
|
||||
offsetFromSymbolStart = "84">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
</Breakpoints>
|
||||
</Bucket>
|
||||
|
||||
@@ -202,7 +202,7 @@ open class MessageCenterController : ZDViewController {
|
||||
|
||||
open override func viewSafeAreaInsetsDidChange() {
|
||||
super.viewSafeAreaInsetsDidChange()
|
||||
messageCenterView.snp.makeConstraints { make in
|
||||
messageCenterView.snp.remakeConstraints { make in
|
||||
make.top.equalTo(view.safeAreaInsets.top)
|
||||
make.left.right.equalToSuperview()
|
||||
make.bottom.equalTo(-view.safeAreaInsets.bottom)
|
||||
|
||||
@@ -1016,13 +1016,13 @@ class RescueController : ZDViewController {
|
||||
|
||||
override func viewSafeAreaInsetsDidChange() {
|
||||
super.viewSafeAreaInsetsDidChange()
|
||||
categoryView.snp.makeConstraints { make in
|
||||
categoryView.snp.remakeConstraints { make in
|
||||
make.left.right.equalToSuperview()
|
||||
make.top.equalTo(view.safeAreaInsets.top)
|
||||
make.height.equalTo(auto(44))
|
||||
}
|
||||
|
||||
categoryContainerView?.snp.makeConstraints({ make in
|
||||
categoryContainerView?.snp.remakeConstraints({ make in
|
||||
make.top.equalTo(categoryView.snp.bottom)
|
||||
make.left.right.equalToSuperview()
|
||||
make.bottom.equalTo(-view.safeAreaInsets.bottom)
|
||||
|
||||
@@ -257,7 +257,7 @@ open class ReviewFailedController : ZDViewController {
|
||||
|
||||
open override func viewSafeAreaInsetsDidChange() {
|
||||
super.viewSafeAreaInsetsDidChange()
|
||||
reviewFailedView.snp.makeConstraints { make in
|
||||
reviewFailedView.snp.remakeConstraints { make in
|
||||
make.top.equalTo(view.safeAreaInsets.top)
|
||||
make.left.right.equalToSuperview()
|
||||
make.bottom.equalTo(-view.safeAreaInsets.bottom)
|
||||
|
||||
Reference in New Issue
Block a user