exc_bad_access on [NSDate timeIntervalSinceReferenceDate]
问题 I'm getting weird behavior out of [NSDate timeIntervalSinceReferenceDate] . I have the following function: -(void) insertRow{ NSTimeInterval timeNow = [NSDate timeIntervalSinceReferenceDate]; if (timeNow - secondsSinceTableViewScroll <0.5){ [self insertRow]; return; } NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex:[self.itemsToFollow count] - 1]; [self.tableView insertSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; } which is a callback from an ASIHTTPRequest