gpt4 book ai didi

ios - UITableView reloadData EXC_BAD_ACESS code=2

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:03:02 25 4
gpt4 key购买 nike

我有这段加载 UITableView 的代码:

- (int)numberOfSectionsInTableView:(UITableView *)tableView {
if (tableView == self.peopleTableView)
return [self.people count];
else
return [[[self.scheduleDays objectAtIndex:self.dayInt] periods] count];
}

- (int)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (tableView == self.peopleTableView)
return [[self.people objectAtIndex:section] count];
else
return 1;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if (tableView == self.peopleTableView)
return [self.headers objectAtIndex:section];
else
return [NSString stringWithFormat:@"%@ - %@", [[[[self.scheduleDays objectAtIndex:self.dayInt] periods] objectAtIndex:section] startTime], [[[[self.scheduleDays objectAtIndex:self.dayInt] periods] objectAtIndex:section] endTime]];
}

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return self.headers;
}

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
return index;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == self.peopleTableView) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
if (cell == nil)
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];

Person *person = [[self.people objectAtIndex:[indexPath section]] objectAtIndex:[indexPath row]];
[[cell textLabel] setText:[NSString stringWithFormat:@"%@ %@", [person firstName], [person lastName]]];

return cell;
} else {
ScheduleTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

if (cell == nil) {
cell = [[ScheduleTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
}

Period *period = [[[[[[self appDelegate] user] scheduleDays] objectAtIndex:self.dayInt] periods] objectAtIndex:[indexPath section]];

[[cell mainLabel] setText:[period desc]];
[[cell subtitleLabel1] setText:[period teacher]];
[[cell subtitleLabel2] setText:[period roomLocation]];

return cell;
}
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == self.peopleTableView) {
self.currentViewedPerson = [[self.people objectAtIndex:[indexPath section]] objectAtIndex:[indexPath row]];
[self loadPerson:self.currentViewedPerson];
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
if (tableView == self.scheduleTable)
return 70;
else
return 44;
}

我使用方法调用 [_tableView reloadData] 加载数据。第一次工作正常,但第二次失败并显示 EXC_BAD_ACCESS code=2。为什么?

编辑:

似乎错误来自对

的调用
#0  0x01b8c2a3 in TComponentFont::GetMinSideBearing(CGAffineTransform const&, bool) const ()

TComponentFont

或调用

enter image description here

希望对您有所帮助。

编辑:

NSZombies 也没有帮助。在 Xcode 中运行它(使用 NSZombies)我得到同样的错误没有输出,使用僵尸配置文件对其进行分析它没有任何消息,应用程序只是崩溃。

编辑:

此错误来自章节标题,因为当我注释掉这些章节时我不再收到错误。我的章节标题实现有何不正确之处?

编辑:

这是在 DirectoryViewController.h 中声明 _headers 的方式:

@property (strong, nonatomic) NSMutableArray *headers;

标题是如何填充的(可能不是所有必需的但是......):

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict {
if (parser == self.peopleParser) {
if ([elementName isEqualToString:@"People"]) {
self.people = [NSMutableArray array];
self.headers = [NSMutableArray array];
} else if ([elementName isEqualToString:@"Person"]) {
self.currentPerson = [Person new];
[self.currentPerson setPersonID:[attributeDict objectForKey:@"id"]];
}
} else if (parser == self.scheduleParser) {
if ([elementName isEqualToString:@"Schedule"])
self.scheduleDays = [NSMutableArray array];
else if ([elementName isEqualToString:@"Day"]) {
NSEntityDescription *entity = [NSEntityDescription entityForName:@"ScheduleDay" inManagedObjectContext:[[self appDelegate] managedObjectContext]];
self.currentDay = [[ScheduleDay alloc] initWithEntity:entity insertIntoManagedObjectContext:nil];
} else if ([elementName isEqualToString:@"Course"]) {
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Period" inManagedObjectContext:[[self appDelegate] managedObjectContext]];
self.currentPeriod = [[Period alloc] initWithEntity:entity insertIntoManagedObjectContext:nil];
}
}
}

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
self.currentString = string;
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {
if (parser == self.peopleParser) {
if ([elementName isEqualToString:@"People"])
self.currentLetter = @"";
else if ([elementName isEqualToString:@"Person"]) {
if ([self.currentLetter isEqualToString:[[[self.currentPerson lastName] substringToIndex:1] uppercaseString]])
[[self.people lastObject] addObject:self.currentPerson];
else {
[self.people addObject:[NSMutableArray array]];
[self.headers addObject:[[[self.currentPerson lastName] substringToIndex:1] uppercaseString]];
self.currentLetter = [[[self.currentPerson lastName] substringToIndex:1] uppercaseString];
[[self.people lastObject] addObject:self.currentPerson];
}
} else if ([elementName isEqualToString:@"Last"])
[self.currentPerson setLastName:self.currentString];
else if ([elementName isEqualToString:@"First"])
[self.currentPerson setFirstName:self.currentString];
else if ([elementName isEqualToString:@"EmailAddress"])
[self.currentPerson setEmail:self.currentString];
else if ([elementName isEqualToString:@"PhoneCell"])
[self.currentPerson setCellPhone:self.currentString];
else if ([elementName isEqualToString:@"PhoneHome"])
[self.currentPerson setHomePhone:self.currentString];
else if ([elementName isEqualToString:@"GradYear"])
[self.currentPerson setGradYear:self.currentString];
else if ([elementName isEqualToString:@"StudentGrade"])
[self.currentPerson setGrade:self.currentString];
else if ([elementName isEqualToString:@"Street1"])
[self.currentPerson setStreet1:self.currentString];
else if ([elementName isEqualToString:@"Street2"])
[self.currentPerson setStreet2:self.currentString];
else if ([elementName isEqualToString:@"City"])
[self.currentPerson setCity:self.currentString];
else if ([elementName isEqualToString:@"State"])
[self.currentPerson setState:self.currentString];
else if ([elementName isEqualToString:@"Zip"])
[self.currentPerson setZip:self.currentString];
} else if (parser == self.scheduleParser) {
if ([elementName isEqualToString:@"Course"])
[self.currentPeriod setDay:self.currentDay];
else if ([elementName isEqualToString:@"Day"])
[self.scheduleDays addObject:self.currentDay];
else if ([elementName isEqualToString:@"StartTime"])
[self.currentPeriod setStartTime:self.currentString];
else if ([elementName isEqualToString:@"EndTime"])
[self.currentPeriod setEndTime:self.currentString];
else if ([elementName isEqualToString:@"Description"])
[self.currentPeriod setDesc:self.currentString];
else if ([elementName isEqualToString:@"Location"])
[self.currentPeriod setRoomLocation:self.currentString];
else if ([elementName isEqualToString:@"Teacher"])
[self.currentPeriod setTeacher:self.currentString];
}
self.currentString = @"";
}

- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError {
if ([parseError code] == 5) {
self.people = [NSMutableArray array];
self.headers = [NSMutableArray array];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error!" message:[parseError description] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert show];
}
}

编辑:

调用reloadData的地方:

- (void)search {
NSString *urlString = [LINK SETUP CODE GOES HERE]

self.peopleParser = [[NSXMLParser alloc] initWithContentsOfURL:[NSURL URLWithString:urlString]];
self.peopleParser.delegate = self;
if ([self.peopleParser parse] && [self.people count] > 0) {
[self.peopleTableView reloadData];
[self.peopleTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];
[self.view addSubview:self.peopleView];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Results!" message:@"Your search returned no results. Try broadening your search." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alert show];
}
[self.activityIndicator stopAnimating];
self.activityIndicator.hidden = YES;
}

最佳答案

为避免内存问题,您应该创建对象并使用属性访问器方法引用对象。

例如,您为 headers 可变数组声明属性:

@property (strong, nonatomic) NSMutableArray *headers;

那么你应该这样创建你的数组:

 self.headers = [NSMutableArray array];

并以这种方式引用您的数组:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return [self.headers objectAtIndex:section];
}

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return self.headers;
}

使用此语法,您可以为 headers 属性调用 setter 和 getter 方法(这些方法由 Xcode 自动生成)。

在非 ARC 环境中,它等效于为 (retain, nonatomic) 属性调用这些方法(retain 类似于 strong) :

- (NSMutableArray *)headers {

return _headers;
}

- (void)setHeaders:(NSMutableArray *)headers {

[_headers autorelease];
_headers = [headers retain];
}

如果您在 ARC 环境中使用 self. 符号,将自动跟踪对象的引用计数。

您可以找到有关属性的更多信息 here .

编辑:

这似乎是框架中的错误。检查这个answer

关于ios - UITableView reloadData EXC_BAD_ACESS code=2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19042323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com