4

我正在尝试在使用 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
4

1 回答 1

1

您发布的代码没有任何明显错误。问题在于创建并保留 PlacesViewController 的代码。您可能正在创建它,但没有将其永久存储在任何地方。您的 PlacesViewController 需要保存到 ivar 或放入将为您管理它的视图容器(UINavigationController、UITabController 或类似)

于 2012-10-19T13:37:36.960 回答