snapkit更新約束崩潰的問題

来源:https://www.cnblogs.com/shenyuiOS/archive/2018/09/27/9707995.html
-Advertisement-
Play Games

最近在使用snapkit佈局時,竟然發現更新約束會導致崩潰,為什麼這樣呢? 看起來完全沒有問題,但是一運行就崩潰,崩潰位置在activeIfNeeded方法中: fatalerror信息提示找不到因存在的constraint來更新,輸出existingLayoutConstraints不為nil,輸 ...


最近在使用snapkit佈局時,竟然發現更新約束會導致崩潰,為什麼這樣呢? 

        checkButton.snp.makeConstraints { (make) in
            make.left.top.equalToSuperview()
            make.height.equalTo(radioListSubviewButtonHeight)
            make.width.equalTo(self).multipliedBy(0.5)
        }
        checkButton.snp.updateConstraints { (make) in
                make.width.equalTo(self).multipliedBy(0.7)
        }

 

看起來完全沒有問題,但是一運行就崩潰,崩潰位置在activeIfNeeded方法中:

    internal func activateIfNeeded(updatingExisting: Bool = false) {
        guard let item = self.from.layoutConstraintItem else {
            print("WARNING: SnapKit failed to get from item from constraint. Activate will be a no-op.")
            return
        }
        let layoutConstraints = self.layoutConstraints

        if updatingExisting {
            var existingLayoutConstraints: [LayoutConstraint] = []
            for constraint in item.constraints {
                existingLayoutConstraints += constraint.layoutConstraints
            }

            for layoutConstraint in layoutConstraints {
                let existingLayoutConstraint = existingLayoutConstraints.first { $0 == layoutConstraint }
                guard let updateLayoutConstraint = existingLayoutConstraint else {
                    fatalError("Updated constraint could not find existing matching constraint to update: \(layoutConstraint)")
                }

                let updateLayoutAttribute = (updateLayoutConstraint.secondAttribute == .notAnAttribute) ? updateLayoutConstraint.firstAttribute : updateLayoutConstraint.secondAttribute
                updateLayoutConstraint.constant = self.constant.constraintConstantTargetValueFor(layoutAttribute: updateLayoutAttribute)
            }
        } else {
            NSLayoutConstraint.activate(layoutConstraints)
            item.add(constraints: [self])
        }
    }

 

fatalerror信息提示找不到因存在的constraint來更新,輸出existingLayoutConstraints不為nil,輸出existingLayoutConstraint卻為nil,很奇怪。

點擊進入first方法,發現是取第一個滿足謂詞條件的值,而不是簡單的取第一個值:

    /// Returns the first element of the sequence that satisfies the given
    /// predicate.
    ///
    /// The following example uses the `first(where:)` method to find the first
    /// negative number in an array of integers:
    ///
    ///     let numbers = [3, 7, 4, -2, 9, -6, 10, 1]
    ///     if let firstNegative = numbers.first(where: { $0 < 0 }) {
    ///         print("The first negative number is \(firstNegative).")
    ///     }
    ///     // Prints "The first negative number is -2."
    ///
    /// - Parameter predicate: A closure that takes an element of the sequence as
    ///   its argument and returns a Boolean value indicating whether the
    ///   element is a match.
    /// - Returns: The first element of the sequence that satisfies `predicate`,
    ///   or `nil` if there is no element that satisfies `predicate`.
    ///
    /// - Complexity: O(*n*), where *n* is the length of the sequence.
    public func first(where predicate: (Element) throws -> Bool) rethrows -> Element?

在此處謂詞條件為 $0 == layoutConstraint ,進入LayoutConstraint類中,發現==運算符已被重載:

internal func ==(lhs: LayoutConstraint, rhs: LayoutConstraint) -> Bool {
    guard lhs.firstItem === rhs.firstItem &&
          lhs.secondItem === rhs.secondItem &&
          lhs.firstAttribute == rhs.firstAttribute &&
          lhs.secondAttribute == rhs.secondAttribute &&
          lhs.relation == rhs.relation &&
          lhs.priority == rhs.priority &&
          lhs.multiplier == rhs.multiplier else {
        return false
    }
    return true
}

在判斷相等時,竟然還判斷了multiplier,本例中更新約束前後multiplier不相等,所以找不到對應的約束。

 

解決方法:

要想修改multiplier,不能使用update,要使用remake

snapkit issue中相似問題


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 創建主XML索引註意事項 若要創建主 XML 索引,請使用 CREATE INDEX (Transact-SQL) Transact-SQL DDL 語句。 XML 索引不完全支持可用於非 XML 索引的所有選項。 創建 XML 索引時註意下列事項: 若要創建主 XML 索引,含有被索引的 XML ...
  • Hadoop版本演變 Apache Hadoop的四大分支構成了三個系列的Hadoop版本: 0.20.X系列 主要有兩個特征:Append與Security 0.21.0/0.22.X系列 整個Hadoop項目被分割成三個獨立的模塊: 1.Common模塊 2.HDFS模塊 3.Mapreduce ...
  • mysql 正常運行的時候,[查看 table 的結構][show create table doc]並不是困難的事。 但是有時 mysql 發生故障,這種方法便不再可行。 當遇到故障,通常使用新的 mysql 實例來恢復當前的數據。 建表是非常重要的步驟,我們必須有其它的方法來尋找 table 的 ...
  • 在使用lepus3.7監控MySQL資料庫的時候,碰到了以下幾個問題,本博客給出了這些問題產生的原因,以及相應的解決辦法。 1. 問題1:php頁面無法連接資料庫 直接使用php程式執行php文件,可以連接mysql,但是在httpd中同樣的php頁面無法連接mysql。 lepus的web程式(P ...
  • 之前一直以為Linux和Windows差不多,但是學習了Linux基礎入門之後才發現兩種操作系統之間差距非常大。 Linux只是在硬體之上的內核和系統調用,就連我們在Windows里習以為常的圖形界面都是Linux上的軟體。在使用Linux的時候,我們都習慣於使用終端和命令行進行操作,而不是像Win ...
  • 提醒對話框手機上的App極大地方便了人們的生活,很多業務只需用戶拇指一點即可輕鬆辦理,然而這也帶來了一定的風險,因為有時候用戶並非真的想這麼做,只是不小心點了一下而已,如果App不做任何提示的話,繼續吭哧吭哧兀自辦完業務,比如轉錯錢了、誤刪資料了,往往令用戶追悔莫及。所以對於部分關鍵業務,App為了 ...
  • 此篇文章可以利用碎片化時間進行消化和瞭解,針對Android各個版本特性,並沒有把所有列出,只是抽出了比較常用重要的特性作為提示,同時在面試中只要牢記重要的幾個點即可,其他特性直接查找官方文檔即可。 Android5.0(棒棒糖) 1)運行時機制,採用ART.安裝時轉換為機器語言,成為真正本地應用 ...
  • 屏幕解析度:在x y軸上的像素點數。單位是px,1px=1個像素點。一般以 縱向像素×橫向像素 表示,如1920*1080dpi 每英寸上的像素點數(斜角的px數目 ÷ 斜角的inch數目),dot per inch的縮寫,與屏幕尺寸和屏幕解析度有關。 以三星C9 pro為例,官方參數為1920×1 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...