PXUIView pxStyleChildren崩溃

时间:2014-02-25 19:16:35

标签: pixate

刚刚注意到这次崩溃...... SIGABRT ABORT位于0x38d141f0

objc_object::sidetable_release(bool) + 116
-[UIWebDocumentView _updateSubviewCaches] + 36
-[UIWebDocumentView subviews] + 86
-[PXUIView pxStyleChildren]
-[PXUIView layoutSubviews]

任何想法??

1 个答案:

答案 0 :(得分:0)

从我看到的情况来看,这次崩溃通常是由于你的CSS中的语法导致Pixate无法正确处理。

尝试从background-inset选择器中的background-size.button-search-cancel删除逗号。

.button-search-cancel{
  background-inset:15px 6px;
  background-size:13px 32px;
  background-image:url(ButtonSearchCancel.png);
  color:#fff;
  font-weight:700;
}

如果这不起作用,请先注释掉所有CSS并查看它是否仍然崩溃。然后评论一半,然后四分之一,等等,直到你可以缩小问题的范围。我希望这有帮助。 :)