美文网首页
The compiler is unable to type-c

The compiler is unable to type-c

作者: 90后的晨仔 | 来源:发表于2020-03-05 19:39 被阅读0次

    在查看一个三方库的代码的时候有这样一个错误The compiler is unable to type-check this expression in reasonable time; try breaking up the express原来是三目运算符表达式过长导致的。

    报错语句:

    let H: CGFloat = glt_iphoneX ? (view.bounds.height - Y - 44 - 34) : view.bounds.height - Y - 44

    修改了一下报错消除:

       let temNum1 = view.bounds.height - Y - 44 - 34
            let temNum2 = view.bounds.height - Y - 44
            //这个44为切换条的高度
            let H: CGFloat = glt_iphoneX ? temNum1 : temNum2
    

    相关文章

      网友评论

          本文标题:The compiler is unable to type-c

          本文链接:https://www.haomeiwen.com/subject/mywcrhtx.html