我正在尝试在使用 ARC 的项目中创建一个简单的 UItableview 应用程序。表格渲染得很好,但如果我尝试滚动或点击一个单元格,应用程序就会崩溃。
看着 NSZombies(这是正确的说法吗?)我收到消息“-[PlacesViewController respondsToSelector:]: message sent to deallocated instance 0x7c29240”
我相信这与 ARC 有关,因为我过去已经成功实现了 UItableviews,但这是我使用 ARC 的第一个项目。我知道我一定错过了一些非常简单的东西。
PlacesTableViewController.h
@interface PlacesViewController : UIViewController
<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic, strong) UITableView *myTableView;
@end
PlacesTableViewController.m
#import "PlacesTableViewController.h"
@implementation PlacesViewController
@synthesize myTableView;
- (void)viewDidLoad
{
[super viewDidLoad];
self.myTableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
self.myTableView.dataSource = self;
self.myTableView.delegate = self;
[self.view addSubview:self.myTableView];
}
#pragma mark - UIViewTable DataSource methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 100;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *result = nil;
static NSString *CellIdentifier = @"MyTableViewCellId";
result = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(result == nil)
{
result = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
result.textLabel.text = [NSString stringWithFormat:@"Cell %ld",(long)indexPath.row];
return result;
}
@end