- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在从 JSON 解析对象后填充 TableView 。我想将行数设置为已解析对象的计数。
这是我的 viewDidLoad 代码:
- (void)viewDidLoad
{
[super viewDidLoad];
// initializing data source
[self setNotifications:[[NSMutableArray alloc] init]];
NSURL *url = [NSURL URLWithString:SourceURL];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
[self setNotifications:[JSON objectForKey:@"notifications"]];
// [[self tableView] setHidden:NO];
[[self tableView] reloadData];
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"Request Failure Because %@",[error userInfo]);
}];
[operation start];
这是我的一种数据源方法(我相信错误一定在这里):
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if ([self notifications] && [[self notifications] count] ) {
return [[self notifications] count];
} else{
return 0;
}
}
这是我的完整错误信息:
> *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 1 beyond bounds [0 ..
> 0]'
> *** First throw call stack: (0x13c4012 0x118ce7e 0x1379b44 0x510c04 0x300ea0 0x2b5c4e 0x2b8224 0x17c952 0x17c2dc 0xc4a9d14 0x26e0 0x16ea2
> 0x18409 0x162753f 0x1639014 0x16297d5 0x136aaf5 0x1369f44 0x1369e1b
> 0x22647e3 0x2264668 0xd0ffc 0x1f1d 0x1e45) libc++abi.dylib: terminate
> called throwing an exception
更新:
这是我的 cellForRowAtIndexpath 方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellID = @"readNotification";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if (!cell){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];
}
NSDictionary *notification = [[self notifications] objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[notification objectForKey:@"from"]];
[[cell detailTextLabel] setText:[notification objectForKey:@"date"]];
return cell;
}
更新 2
我在项目中添加了一些日志,它提供了一些有趣的输出:
2013-08-06 23:53:03.994 NotificationReader[1193:c07] 1. before request 2013-08-06 23:53:04.023 NotificationReader[1193:c07] 2. json parshing operation started 2013-08-06 23:53:04.031 NotificationReader[1193:c07] 3. entered the numberOfRowsInSection block 2013-08-06 23:53:04.040 NotificationReader[1193:c07] No notifications 2013-08-06 23:53:04.319 NotificationReader[1193:c07] 3. entered the numberOfRowsInSection block 2013-08-06 23:53:04.320 NotificationReader[1193:c07] There were 14 notifications 2013-08-06 23:53:08.260 NotificationReader[1193:c07] * Terminating app due to uncaught exception
所以首先它认为我的数组是空的,然后它重新加载并获得正确的通知计数。不幸的是,它从未进入 cellForRowAtIndexPath 方法..
更新 3
我在我的项目中添加了一个异常断点,并做了一些额外的日志记录,我假设它在重新加载 TableView 时遇到了问题。这是目前的结果:
2013-08-07 08:40:58.104 NotificationReader[433:c07] 1. before request
2013-08-07 08:40:58.107 NotificationReader[433:c07] 2. json parshing operation started
2013-08-07 08:40:58.113 NotificationReader[433:c07] 3. entered the numberOfRowsInSection block
2013-08-07 08:40:58.120 NotificationReader[433:c07] Found 0 notifications!
2013-08-07 08:41:10.852 NotificationReader[433:c07] Trying to reload data
2013-08-07 08:41:10.853 NotificationReader[433:c07] data needs to be reloaded
2013-08-07 08:41:10.854 NotificationReader[433:c07] 3. entered the numberOfRowsInSection block
2013-08-07 08:41:10.855 NotificationReader[433:c07] Found 14 notifications!
2013-08-07 08:41:10.858 NotificationReader[433:c07] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
*** First throw call stack:
(0x13c5012 0x118de7e 0x137ab44 0x511c04 0x301ea0 0x2b6c4e 0x2b9224 0x17d952 0x17d2dc 0xc4c0d14 0x351b 0x162853f 0x163a014 0x162a7d5 0x136baf5 0x136af44 0x136ae1b 0x22657e3 0x2265668 0xd1ffc 0x2c4d 0x2b75)
libc++abi.dylib: terminate called throwing an exception}
堆栈跟踪:
#0 0x0118de52 in objc_exception_throw ()
#1 0x0137ab44 in -[__NSArrayI objectAtIndex:] ()
#2 0x00511c04 in -[UITableViewDataSource tableView:heightForRowAtIndexPath:] ()
#3 0x00301ea0 in -[UITableViewController tableView:heightForRowAtIndexPath:] ()
#4 0x002b6c4e in -[UISectionRowData refreshWithSection:tableView:tableViewRowData:] ()
#5 0x002b9224 in -[UITableViewRowData numberOfRows] ()
#6 0x0017d952 in -[UITableView noteNumberOfRowsChanged] ()
#7 0x0017d2dc in -[UITableView reloadData] ()
#8 0x0c4a9d14 in -[UITableViewAccessibility(Accessibility) reloadData] ()
#9 0x0000351b in __36-[NRTableViewController viewDidLoad]_block_invoke_2 at /Users/jozsef/Development/NotificationReader/NotificationReader/NRTableViewController.m:52
我尝试使用 lldb 得到这个结果:
(lldb) po [[self notifications] count]
error: Execution was interrupted, reason: Attempted to dereference an invalid pointer..
The process has been returned to the state before execution.
最佳答案
这是由于试图访问超出数组边界的索引造成的。从表面上看,唯一的数组访问是在 -tableView:cellForRowAtIndexPath:
:
NSDictionary *notification = [[self notifications] objectAtIndex:[indexPath row]];
我希望这是引发异常的地方。
您可以通过从断点导航器中添加“添加异常断点...”来确定。
通过确认 [indexPath row]
在 [self notifications]
数组的范围内来解决这个问题。或者,如果您希望它始终在范围内,那么找出它可能超出范围的原因。
附带说明,您可以按如下方式重写您的方法之一:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.notifications count];
}
如果 self.notifications 是 nil,这将返回 0。如果 count 是 0,那么它显然会返回 0。这就是所有需要的。
编辑:最后,您还可以使用下标重写数组访问,如下所示:
NSDictionary *notification = self.notifications[indexPath.row];
确保在 AFJSONRequestOperation 的成功 block 中调用主线程上的 UI 更新,即
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
// update on the main thread!
dispatch_async(dispatch_get_main_queue(), ^{
[self setNotifications:[JSON objectForKey:@"notifications"]];
// [[self tableView] setHidden:NO];
[[self tableView] reloadData];
});
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"Request Failure Because %@",[error userInfo]);
}];
关于iphone - NSRangeException 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18090424/
我正在编写一个基于核心数据的 iPhone 应用程序,而且我是 Objective-C 的新手。 我有一个正在努力解决的错误。 iPhone 模拟器不断崩溃并显示以下错误消息: 2010-03-21
当我尝试将属性应用于子字符串时,有时在以下代码中崩溃: // Dummy strings let originalString = "Some example string" let searchSu
我试图在按下主页按钮时保存数据。这是我的相关代码。 - (NSString *) saveFilePath { NSArray *path = NSSearchPathForDi
我有一个应用程序,用户报告该应用程序随机崩溃。所有崩溃都有相同的堆栈 0 CoreFoundation TAGPBIvarClearUInt32 (in SPONTAN) + 11 1 l
我在下面的方法中得到 substringWithRange:range 的异常。 我有禁用编辑的 TextView 。 我仅将文本字段用于文本选择。当我第一次选择文本时没有异常(exception),
Application Specific Information: *** Terminating app due to uncaught exception 'NSRangeException',
大家好,我是 swift 的新手,我的程序面临一个问题。我已在“let defaultStudentId = NSUserDefaults.standardUserDefaults()”中保存一些数据
我试图在从 JSON 解析对象后填充 TableView 。我想将行数设置为已解析对象的计数。 这是我的 viewDidLoad 代码: - (void)viewDidLoad { [supe
我的应用在 _storeArray 中随机崩溃。 在 viewDidLoad 中,有一个方法 [self loadUrl] 解析 xml 文件,然后添加字典 [_storeArray addObjec
我仍在边做边学,所以如果这听起来像是一个菜鸟问题,那可能就是这样。 我正在尝试遍历 NSDictionary(消息)并获取某个键的值。 当我运行这段代码时,出现以下错误“* 由于未捕获的异常‘NSRa
我有一个我无法解决的问题。我正在使用 Core Data 框架创建一个 iOS 应用程序。在我得到 NSRangeException 之前,一切都很顺利。这个异常是我在检查应用程序数据是否需要更新的函
你好我是 iPhone 编程的新手,我正在使用 EGOPhotViewer 并想通过使用此代码显示图像, for ( recipeImages in recipeImages.imgArray) {
我无法 repo 这个问题。我明白 NSRangeException 代表什么,但我不明白为什么它会在创建 nib 文件时出现。这是我从 Crashlytics 收到的崩溃报告: Fatal Exce
我尝试将 360 全景图加载到 UIViewController 的 UIWebView 中,该全景图采用 html 格式并内置于 krpano 中。当全景图打开时,一切正常。虽然过了一段时间后,我得
我正在尝试从相机捕捉图像和录制视频,但每当我用相机关闭 View 时,我都会收到此错误: Terminating app due to uncaught exception 'NSRangeExcep
应用程序在 iOS 11 更新之前运行良好。在 iOS 11 推出后,一些用户遇到了以下崩溃,但我无法在模拟器 iOS 11 中重现此问题。基于 fabric.io,并非所有 iOS 11 都经历过此
在向我的应用程序添加新的 Core Data 模型版本后,我执行了轻量级迁移,显然是成功的。迁移的文件加载正常,但在第一次尝试通过特定关系访问属性时,应用程序崩溃并显示 NSRangeExceptio
在我的应用程序中,更新表格内容后,我尝试将 UITableView 滚动到顶部一次。然而,在某些情况下,我的 table 是空的。所以我得到了以下异常: Terminating app due to
我有一个 NSRangeException 错误,该错误并不总是发生(尤其是在调试时)。它是随机出现的,我无法弄清楚它来自哪里。我有很多数组操作,因此很难以这种方式消除它。 我的问题是我是否可以从调试
我正在做教程并收到以下错误。 我的代码: #import int main (int argc, const char * argv[]) { //NSAutoreleasePool *p
我是一名优秀的程序员,十分优秀!