- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个带有自定义 UICollectionLayout 的 UICollectionView。一切正常,直到我尝试插入一行……
然后我收到以下错误,似乎无法弄清楚如何解决它。
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no UICollectionViewLayoutAttributes instance for -layoutAttributesForItemAtIndexPath: <NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0}'
*** First throw call stack:
(
0 CoreFoundation 0x000000010915ae65 __exceptionPreprocess + 165
1 libobjc.A.dylib 0x0000000108789deb objc_exception_throw + 48
2 CoreFoundation 0x000000010915acca +[NSException raise:format:arguments:] + 106
3 Foundation 0x000000010591a4de -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 198
4 UIKit 0x00000001073e361c -[UICollectionViewData layoutAttributesForItemAtIndexPath:] + 627
5 UIKit 0x00000001073a2859 __51-[UICollectionView _viewAnimationsForCurrentUpdate]_block_invoke1541 + 176
6 UIKit 0x00000001073a02ed -[UICollectionView _viewAnimationsForCurrentUpdate] + 4524
7 UIKit 0x00000001073a4a5c __62-[UICollectionView _updateWithItems:tentativelyForReordering:]_block_invoke1611 + 197
8 UIKit 0x0000000106be01b8 +[UIView(Animation) performWithoutAnimation:] + 65
9 UIKit 0x00000001073a3e07 -[UICollectionView _updateWithItems:tentativelyForReordering:] + 3241
10 UIKit 0x000000010739eb98 -[UICollectionView _endItemAnimationsWithInvalidationContext:tentativelyForReordering:] + 15556
11 UIKit 0x00000001073a5ee7 -[UICollectionView _performBatchUpdates:completion:invalidationContext:tentativelyForReordering:] + 415
12 UIKit 0x00000001073a5d25 -[UICollectionView _performBatchUpdates:completion:invalidationContext:] + 74
13 UIKit 0x00000001073a5cc8 -[UICollectionView performBatchUpdates:completion:] + 53
14 Qanda 0x0000000103d9e0d9 _TFC5Qanda32HomeFeedCollectionViewController22redrawViewAfterNewDatafS0_FGSaCS_10QandaModel_T_ + 4105
15 Qanda 0x0000000103dad5ca _TFFFC5Qanda32HomeFeedCollectionViewController9fetchDataFS0_FT_T_U_FTGSqGSaCS_10QandaModel__Sb_T_U0_FT_T_ + 1274
16 Qanda 0x0000000103afc6b7 _TTRXFo__dT__XFdCb__dT__ + 39
17 libdispatch.dylib 0x0000000109dd7e5d _dispatch_call_block_and_release + 12
18 libdispatch.dylib 0x0000000109df849b _dispatch_client_callout + 8
19 libdispatch.dylib 0x0000000109de02af _dispatch_main_queue_callback_4CF + 1738
20 CoreFoundation 0x00000001090bad09 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
21 CoreFoundation 0x000000010907c2c9 __CFRunLoopRun + 2073
22 CoreFoundation 0x000000010907b828 CFRunLoopRunSpecific + 488
23 GraphicsServices 0x000000010c171ad2 GSEventRunModal + 161
24 UIKit 0x0000000106b34610 UIApplicationMain + 171
25 Qanda 0x0000000103bb537d main + 109
26 libdyld.dylib 0x0000000109e2c92d start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
这是我的布局代码:
var numberOfColumns: Int = 1
let cellPadding: CGFloat = 10
let buttonContainerHeight: CGFloat = 50
let DEFAULT_HEIGHT: CGFloat = 80
private var contentWidth: CGFloat = UIScreen.mainScreen().bounds.width
private var totalContentHeight: CGFloat = 0.0
// Delegate
var delegate: HomeFeedCollectionViewLayoutDelegate?
var cache = [UICollectionViewLayoutAttributes]()
override func prepareLayout() {
// If cache is empty, calculate the layout
if cache.isEmpty {
// Set the size
let columnWidth = contentWidth / CGFloat(numberOfColumns)
var contentHeight: CGFloat = 0.0
var column = 0
let xOffset: CGFloat = 0
var yOffset: CGFloat = 0
var yOffsetArray = [CGFloat]()
// First check if sections actually exist
if collectionView!.numberOfSections() > 0 {
// Loop through items in section
for item in 0 ..< collectionView!.numberOfItemsInSection(0) {
let indexPath = NSIndexPath(forItem: item, inSection: 0)
let width = columnWidth - cellPadding * 2
let questionHeight = delegate?.collectionView(collectionView!, heightForQuestionAtIndexPath: indexPath, withWidth:width)
// Calculate frame
var height: CGFloat!
if questionHeight > 0 {
height = DEFAULT_HEIGHT + buttonContainerHeight + questionHeight! + 10
}
else {
height = contentWidth + buttonContainerHeight
}
if yOffsetArray.isEmpty {
log.debug("yOffsetArray is EMPTY")
}
else {
yOffset = yOffsetArray[item - 1] - cellPadding
}
yOffsetArray.append(height + yOffset)
let frame = CGRect(x: xOffset, y: yOffset, width: columnWidth, height: height)
let insetFrame = CGRectInset(frame, cellPadding, cellPadding)
// Create instance of UICollectionViewLayoutAttribute & set insetFrame
let attributes = UICollectionViewLayoutAttributes(forCellWithIndexPath: indexPath)
attributes.frame = insetFrame
cache.append(attributes)
// Make content height
contentHeight = contentHeight + (height - cellPadding)
column = column >= (numberOfColumns - 1) ? 0 : ++column
}
self.totalContentHeight = contentHeight
}
}
}
override func collectionViewContentSize() -> CGSize {
return CGSize(width: UIScreen.mainScreen().bounds.width, height: self.totalContentHeight + cellPadding)
}
override func layoutAttributesForElementsInRect(rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
var layoutAttributes = [UICollectionViewLayoutAttributes]()
for attributes in cache {
if CGRectIntersectsRect(attributes.frame, rect) {
layoutAttributes.append(attributes)
}
}
return layoutAttributes
}
编辑:缩小错误的根源,如果首先重新加载 CV,返回的 UICollectionViewLayoutAttributes 似乎只会更新为正确的新值。但是,如果我这样做,批量更新会抛出一个错误,指出 AFTER 之后的总行数应该等于之前加上插入的行数……这是有道理的。
编辑 2:现在我不知所措了。批量更新是否尝试从默认布局而不是我的自定义布局中检索布局?
layoutAttributesForElementsInRect = [<UICollectionViewLayoutAttributes: 0x7ffc1d8baf70> index path: (<NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0}); frame = (10 10; 355 405); , <UICollectionViewLayoutAttributes: 0x7ffc1d8a5930> index path: (<NSIndexPath: 0xc000000000200016> {length = 2, path = 0 - 1}); frame = (10 425; 355 143.222); , <UICollectionViewLayoutAttributes: 0x7ffc1d837240> index path: (<NSIndexPath: 0xc000000000400016> {length = 2, path = 0 - 2}); frame = (10 578.222; 355 143.222); [...] <UICollectionViewLayoutAttributes: 0x7ffc1d8d02f0> index path: (<NSIndexPath: 0xc000000002600016> {length = 2, path = 0 - 19}); frame = (10 3229.44; 355 143.222); ]
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no UICollectionViewLayoutAttributes instance for -layoutAttributesForItemAtIndexPath: <NSIndexPath: 0xc000000000200016> {length = 2, path = 0 - 1}'
这怎么可能?
最佳答案
对于那些遇到同样问题的人,我发现当你这样做时
self.collectionView?.performBatchUpdates({ () -> Void in
// add new items into collection
self.collectionView?.insertItemsAtIndexPaths(indexPaths)
}, completion: { (finished) -> Void in
// do insertion animations
});
未调用 layoutAttributesForElementsInRect
方法,而是调用 layoutAttributesForItemAtIndexPath
。
因此,您还必须覆盖自定义布局中的 layoutAttributesForItemAtIndexPath
,如下所示:
override func layoutAttributesForItemAtIndexPath(indexPath: NSIndexPath) -> UICollectionViewLayoutAttributes? {
// Logic that calculates the UICollectionViewLayoutAttributes of the item
// and returns the UICollectionViewLayoutAttributes
return self.singleItemLayout(indexPath)
}
编辑:另外,如果您在使用批处理 insertItemsAtIndexPaths
方法时遇到闪烁。
关于swift - NSInternalInconsistencyException',原因 : 'no UICollectionViewLayoutAttributes instance for -layoutAttributesForItemAtIndexPath, 自定义布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35390665/
我对cassandra并使用1.2.10非常陌生。我有一个时间戳数据类型的主键列。现在,我正在尝试检索日期范围的数据。由于我们知道不能在cassandra中使用,因此我使用的是大于()来获取日期范围。
我正在尝试进行有条件的转场。但我得到: Terminating app due to uncaught exception 'NSInvalidArgumentException', reas
我有一个游戏项目,在调试和发布模式下在设备上运行得非常好。我有两个版本。旧版本和新版本具有更多(后来我添加了)功能,并且两者的 bundle ID、版本相同。当我构建旧版本时,之前没有安装“myGam
这个问题已经有答案了: 奥 git _a (2 个回答) 已关闭 5 年前。 我正在获取 ClassCastException 。这两个类来自不同的 jar,但是JettyContinuationPr
以下代码行抛出异常: HttpResponse response = client.execute(request); // actual HTTP request 我能够捕获它并打印: Log
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
public class TwoThreads { private static Object resource = new Object(); private static void
当我输入 6 (int) 作为值时,运行此命令会出现段错误 (gcc filename.c -lm)。请帮助我解决这个问题。预期的功能尚未实现,但我需要知道为什么我已经陷入段错误。 谢谢! #incl
所以,过去一周半我一直在研究这个 .OBJ/.MTL 网格解析器。在这段时间里,我一直在追踪/修复很多错误、清理代码、记录代码等等。 问题是,每修复一个错误,仍然会出现这个问题,而且一张图片胜过一千个
我正在运行一个代码,它基本上围绕 3 个维度旋转一个大数据数组(5000 万行)。但是,我遇到了一个奇怪的问题,我已将其缩小到如何评估旋转矩阵。基本上,对于除绕 x 轴以外的任何旋转,python 代
就在你说这是重复之前,我已经看到了其他问题,但我仍然想发布这个。 所以我正在阅读 Thinking in Java -Bruce Eckel 这篇文章是关于小写命名约定的: In Java 1.0 a
我想在我的应用程序中使用 REST API。它为我从这个应用程序发出的所有请求抛出 SocketTimeoutException。 Logcat 输出:(您也可以在此处看到带有漂亮格式的输出:http
我知道 raise ... from None 并已阅读 How can I more easily suppress previous exceptions when I raise my own
在未能找到各种Unix工具(例如xargs和whatnot)的最新独立二进制文件(this version很好,但需要外部DLL)后,我承担了自己进行编译的挑战。 ...这是痛苦的。 最终,尽管如此,
我有一个用PHP编写的流套接字服务器。 为了查看一次可以处理多少个连接,我用C语言编写了一个模拟器来创建1000个不同的客户端以连接到服务器。 stream_socket_accept几次返回fals
我的Android Studio昨天运行良好,但是今天当我启动Android Studio并想在移动设备上运行应用程序时,发生了以下错误, 我在互联网和stackoverflow上进行了搜索,但没有解
默认情况下,grails似乎为Java域对象的toString()返回:。那当然不是我想要的,所以我尝试@Override toString()返回我想要的。当我尝试grails generate-a
尝试通过LDAP通过LDAP对用户进行身份验证时,出现以下错误。 Reason: Cannot pass null or empty values to constructor. 谁能告诉我做错了什么
我正在尝试使用应用程序附带的 Houdini Python 模块,该模块是 Houdini 安装文件夹的一部分,位于标准 Python 路径之外。按照安装说明操作后,运行 Houdini Termin
简单地说,我正在为基本数据库编写单链表的原始实现。当用户请求打印索引下列出的元素高于数据库中当前记录数量时,我不断出现段错误,但仅当差值为 1 时。对于更高的数字,它只会触发我在那里编写的错误系统。
我是一名优秀的程序员,十分优秀!