- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下方法来选择当前中心 View Controller 的行:
- (void)_updateSelection
{
[self.tableView reloadData];
[_viewControllers enumerateKeysAndObjectsUsingBlock:^(NSString *path, UIViewController *viewController, BOOL *stop) {
if (viewController == self.revealSideViewController.rootViewController) {
NSInteger row = [self indexOfPath:path];
if (row != NSNotFound && row < [self.tableView numberOfRowsInSection:0]) {
[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];
}
*stop = YES;
}
}];
}
如您所见,我进行了多项检查以确保一切都有效。根据 TableView ,该行位于该部分的边界内。大多数时候,这都很好用。由于调用 reloadData
时 TableView 会不断失去其选择,因此当我需要进行更改时,我会调用此方法。我还在 viewWillAppear:
中调用它。这是它偶尔崩溃的地方。
崩溃的输出是:
*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 2 beyond bounds [0 .. 0]'
*** First throw call stack:
(
0 CoreFoundation 0x041415e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x03ec48b6 objc_exception_throw + 44
2 CoreFoundation 0x040e24e6 -[__NSArrayM objectAtIndex:] + 246
3 UIKit 0x022aaa5c -[UITableView cellForRowAtIndexPath:] + 235
4 UIKit 0x022ad6f0 -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 1320
5 UIKit 0x022ad983 -[UITableView selectRowAtIndexPath:animated:scrollPosition:] + 63
6 The City 0x000073a2 __40-[TCMainMenuController _updateSelection]_block_invoke + 578
7 CoreFoundation 0x041cb13a __65-[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:]_block_invoke + 106
8 CoreFoundation 0x041cb03e -[__NSDictionaryM enumerateKeysAndObjectsWithOptions:usingBlock:] + 190
9 CoreFoundation 0x0412f525 -[NSDictionary enumerateKeysAndObjectsUsingBlock:] + 53
10 The City 0x0000713c -[TCMainMenuController _updateSelection] + 220
11 The City 0x00006999 -[TCMainMenuController viewWillAppear:] + 105
12 UIKit 0x022e2bfa -[UIViewController _setViewAppearState:isAnimating:] + 419
13 UIKit 0x022e3108 -[UIViewController __viewWillAppear:] + 114
14 UIKit 0x022e40c7 -[UIViewController viewWillMoveToWindow:] + 387
15 UIKit 0x02227384 -[UIView(Hierarchy) _willMoveToWindow:withAncestorView:] + 619
16 UIKit 0x02232f60 -[UIView(Internal) _addSubview:positioned:relativeTo:] + 470
17 UIKit 0x022269ed -[UIView(Hierarchy) insertSubview:belowSubview:] + 55
18 The City 0x0034c6b4 -[PPRevealSideViewController pushViewController:onDirection:withOffset:animated:forceToPopPush:completion:] + 2260
19 The City 0x000afc9c -[TCRootViewController pushViewController:onDirection:withOffset:animated:forceToPopPush:completion:] + 428
20 The City 0x0034bc9c -[PPRevealSideViewController pushViewController:onDirection:withOffset:animated:completion:] + 236
21 The City 0x0034b8a4 -[PPRevealSideViewController pushViewController:onDirection:animated:completion:] + 212
22 The City 0x0034b7b5 -[PPRevealSideViewController pushViewController:onDirection:animated:] + 149
23 The City 0x000af832 -[TCRootViewController showMenu] + 162
24 The City 0x00009a13 +[App showMenu] + 83
25 The City 0x00008611 -[TCMainMenuController showMenu:] + 81
26 libobjc.A.dylib 0x03ed6874 -[NSObject performSelector:withObject:withObject:] + 77
27 UIKit 0x021cd0c2 -[UIApplication sendAction:to:from:forEvent:] + 108
28 UIKit 0x024a1c9b -[UIBarButtonItem(UIInternal) _sendAction:withEvent:] + 139
29 libobjc.A.dylib 0x03ed6874 -[NSObject performSelector:withObject:withObject:] + 77
30 UIKit 0x021cd0c2 -[UIApplication sendAction:to:from:forEvent:] + 108
31 UIKit 0x021cd04e -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 61
32 UIKit 0x022c50c1 -[UIControl sendAction:to:forEvent:] + 66
33 UIKit 0x022c5484 -[UIControl _sendActionsForEvents:withEvent:] + 577
34 UIKit 0x022c4733 -[UIControl touchesEnded:withEvent:] + 641
35 UIKit 0x0220a51d -[UIWindow _sendTouchesForEvent:] + 852
36 UIKit 0x0220b184 -[UIWindow sendEvent:] + 1232
37 UIKit 0x021dee86 -[UIApplication sendEvent:] + 242
38 UIKit 0x021c918f _UIApplicationHandleEventQueue + 11421
39 CoreFoundation 0x040ca83f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
40 CoreFoundation 0x040ca1cb __CFRunLoopDoSources0 + 235
41 CoreFoundation 0x040e729e __CFRunLoopRun + 910
42 CoreFoundation 0x040e6ac3 CFRunLoopRunSpecific + 467
43 CoreFoundation 0x040e68db CFRunLoopRunInMode + 123
44 GraphicsServices 0x04f8b9e2 GSEventRunModal + 192
45 GraphicsServices 0x04f8b809 GSEventRun + 104
46 UIKit 0x021cbd3b UIApplicationMain + 1225
47 The City 0x000026ad main + 141
48 libdyld.dylib 0x0468270d start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
使用调试器,我可以看到 -visibleCells
虽然不为空,但没有我尝试选择的单元格(但它应该,除了它在屏幕外)。
最佳答案
您的问题源于以下事实:当您将控制权返回到运行循环时,-reloadData
正在运行。您现在执行此操作的方式将导致崩溃,因为 -reloadData
在您离开该 block 之前不会执行。
解决此问题的一种方法是分派(dispatch)一个 block 在下一个运行循环上运行:
[self.tableView reloadData];
dispatch_async(dispatch_get_main_thread(), ^{
[_viewControllers enumerateKeysAndObjectsUsingBlock:^(NSString *path, UIViewController *viewController, BOOL *stop) {
if (viewController == self.revealSideViewController.rootViewController) {
NSInteger row = [self indexOfPath:path];
if (row != NSNotFound && row < [self.tableView numberOfRowsInSection:0]) {
[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];
}
*stop = YES;
}
}];
});
请参阅此讨论:How to tell when UITableVIew has completed ReloadData?
关于ios - 调用 selectRowAtIndexPath :animated:scrollPosition: 时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20057090/
我想使用 linux 终端在 .txt 文档中找到字符串 animal-0**。 ** 是从 60 到 69 的数字。我想我必须在命令中使用 grep 和正则表达式:grep -E 'animal-0
在他的C# 深入一书中,Jon Skeet 试图回答以下问题: Why can't I convert List to List? 为了解释它,他从一个代码片段开始,其中包括以下两行: Animal[
我对此有点困惑,所以希望能提供一些说明。 public void addAll(List animals) 对比 public void addAll(List animals) 最佳答案 区别在于
我遇到的情况是,我有许多CALayer以“基于回合”的方式进行动画处理。我为每个CALayer上的位置设置了动画,但是它们具有完全相同的持续时间。一旦所有这些CALayer动画完成,就会启动一个新的“
我为正在拔出的刀和空闲状态设置了动画,但是无论我做什么,它们都不会在游戏中设置动画。相反,它卡住在第一帧上。这是动画窗口运行时的样子: 动画: 在检查器中: 最佳答案 我遇到了类似的问题,它归结于动画
我的单个 HTML 文件中嵌入了 2 个页面。所以它所做的是最初它显示 PAGE1,然后如果我从右向左或从左向右滑动 PAGE2 应该显示。我的问题是如何根据我的滑动更改页面动画?比如当我从右向左滑动
我想做一个动画标题。 我创建了一个 FlatList 的动画组件, 用过 onScroll函数来更新动画值。 使用绝对位置放置一个 View (Animated.View) 作为动画 FlatList
我想制作一个打开的窗帘的动画。我有两张图像:一张用于窗帘的左侧,一张用于窗帘的右侧(以红色表示)。我想用核心动画顺利地将它们滑走。我应该寻找什么类型的动画?如何实现逼真的滑动风格? 问候, 斯特凡 a
我有一个简单的旋转动画,可以让一个对象绕其轴旋转。目前它旋转得太快了,我想减慢速度,我试过增加样本??但我对动画了解不多,所以我可能过得很好。如何放慢动画速度?它只有两个键。 最佳答案 首先,通过双击
我似乎无法在上类时获得 angularjs ng-animate,而且在野外似乎也没有任何示例。以演示 fiddle 为例: http://jsfiddle.net/yfajy/ 向 CSS 添加如下
使用以下代码段:http://jsfiddle.net/sylouuu/V7a3Y/2/ 我想在动画的#log 中显示从 0% 到 100% 的进度百分比,100% 很容易通过回调... 有可能这样做
我正在 HTML 中使用 SVG 来使用折线工具定义特定的形状。我希望通过按一下按钮并在几秒钟内将特定形状的外观动画化为不同的形状。 我一直在考虑使用动画工具来更改折线点属性,但到目前为止一直无法找到
您好,在 Firefox(相当糟糕)和 Chrome 之间获得可变性能和效果(还可以)有时这不会执行第一个动画,有时会卡住。 我的结构正确吗? $notification.animate({
我在 iOS 编程时遇到了一个问题:当我尝试为我的 tableView 制作自定义编辑按钮时,我无法将其设置为动画。下面是我如何初始化 tableview: - (void)viewWillAppea
自 beta 5 以来,我注意到在 OS X 10.10 下隐式动画有一些奇怪的行为。调用动画代理有时会导致应用程序崩溃。我设置了一个非常简单的自定义 View 。这是完整的代码: import Co
我正在开发一个可折叠组件,您可以单击它来向上/向下滚动以显示/隐藏详细信息。组件如下: // component.ts import {Component, Directive, Input} fro
我正在努力了解 web animations standard和他们的 polyfill ,正如我所见,它在 Angular 动画库中运行良好(您将动画结束值设置为“*”,这将变为 div 大小的 1
我想创建一个动画闪屏,但出现此错误: Android.Content.Res.Resources+NotFoundException: File res/drawable/splash_screen.
我正在尝试对我的应用程序应用慢动作效果,就像按 Shift 时如何减慢 Mac OS 的大多数图形效果一样。 我的应用程序使用 CoreAnimation,所以我认为它应该没什么大不了的:set sp
我想以编程方式同时不在XML文件中显示两个动画,它应该 ROTATE和TRANSLATE 我怎样才能做到这一点? 请以某种方式建议我?????? 这是ma代码:> ImageView snowImg1
我是一名优秀的程序员,十分优秀!