我正在开发一个 RSS 阅读器,它使用 NSMutableArray ( _stories ) 来存储 RSS Feed 的内容。该数组被应用程序中的两个不同线程使用,并且可以在两种情况下同时访问,因为:
- 它是 UITableViewController 的数据源(读取它的内容并向用户显示所需的信息)
- XMLParser 使用它(从 Internet 下载内容,解析 XML 数据并将内容添加到其中)。
一些代码如下所示:
在 UITableViewController 类中
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
[_stories count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Update the Cell title, for example..
[[cell title] setText:[[[_stories objectAtIndex: storyIndex] objectForKey: @"title"]];
}
在 XMLParser 类中
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI
qualifiedName:(NSString *)qName {
// after finished the parsing of an Item of the XML, add it "multi-threaded array"
NSLog(@"[_stories addObject:_item]");
[_stories addObject:_item];
}
如果用户想要从 RSS Feed 加载“更多帖子”,我将开始另一个解析操作,将_stories数组作为对解析器的引用,它将其他“帖子”附加到数组中。解析结束时,调用 UITableViewController 方法reloadData,然后更新 UITableView。
如果用户在解析运行时向上/向下滚动 UITableView 怎么办?UITableViewController 是否会尝试同时访问_stories数组(以创建单元格)并可能使应用程序崩溃(它很少发生但会发生)?
我想到了使用 @synchronized 块的想法,但我不太确定我必须把它准确地放在哪里(在代码的许多地方都可以访问_stories数组)。另一个问题是:我必须在哪里处理 @synchronized 块可能引发的异常?这可能会导致大量冗余代码。
我也想在没有“非原子”的情况下使用@property,但我认为它不太适合这个问题。
知道如何解决这个问题吗?提前致谢。