15

这是我的问题:我UITableView的故事板中有这个小东西:在此处输入图像描述

这是我的代码:

SmallTableViewController.h

#import <UIKit/UIKit.h>
#import "SmallTable.h"

@interface SmallViewController : UIViewController

@property (weak, nonatomic) IBOutlet UITableView *myTable;

@end

SmallTableViewController.m

#import "SmallViewController.h"

@interface SmallViewController ()

@end

@implementation SmallViewController
@synthesize myTable = _myTable;

- (void)viewDidLoad
{
    SmallTable *myTableDelegate = [[SmallTable alloc] init];
    [super viewDidLoad];
    [self.myTable setDelegate:myTableDelegate];
    [self.myTable setDataSource:myTableDelegate];

    // Do any additional setup after loading the view, typically from a nib.
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end

现在如您所见,我想将一个名为 myTableDelegate 的实例设置为 myTable 的 Delegate 和 DataSource。

这是 SmallTable 类的来源。

小表.h

#import <Foundation/Foundation.h>

@interface SmallTable : NSObject <UITableViewDelegate , UITableViewDataSource>

@end

小表.m

@implementation SmallTable

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 0;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return 5;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...
    cell.textLabel.text = @"Hello there!";

    return cell;
}

#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"Row pressed!!");
}

@end

我实现了应用程序需要的所有UITableViewDelegate和方法。UITableViewDataSource为什么它只是在视图出现之前崩溃?

谢谢!!

4

5 回答 5

15

里克斯特是对的。但我想你需要strong为你的属性使用一个限定符,因为在你的viewDidLoad方法结束时,对象无论如何都会被释放。

@property (strong,nonatomic) SmallTable *delegate;

// inside viewDidload

[super viewDidLoad];
self.delegate = [[SmallTable alloc] init];    
[self.myTable setDelegate:myTableDelegate];
[self.myTable setDataSource:myTableDelegate];

但是有什么理由为您的表使用分离的对象(数据源和委托)?为什么不将SmallViewController您的表设置为源和委托?

此外,您没有以正确的方式创建单元格。这些行什么都不做:

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

// Configure the cell...
cell.textLabel.text = @"Hello there!";

dequeueReusableCellWithIdentifier只需从表“缓存”中检索一个已经创建并且可以重复使用的单元格(这是为了避免内存消耗),但您还没有创建任何单元格。

你在哪儿alloc-init呢?改为这样做:

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(!cell) {
    cell = // alloc-init here
}
// Configure the cell...
cell.textLabel.text = @"Hello there!";

此外,numberOfSectionsInTableView要返回 1 而不是 0:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}
于 2012-06-29T16:28:22.097 回答
4

大概你正在使用ARC?你myTableDelegate只在一个局部变量中被引用viewDidLoad——一旦该方法结束,它就会被释放。(在委托/数据源模式中,对象不拥有它们的委托,因此表视图对对象的引用很弱。)我不认为仅此一项会导致崩溃,但这可能是您问题的关键。

于 2012-06-29T16:01:53.243 回答
1

setDelegate不会保留代表。

numberOfSectionsInTableView方法必须返回 1 而不是 0;

于 2012-06-29T16:22:55.027 回答
1
(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 0;
}

段数应至少设置为一个

于 2013-11-30T09:59:03.837 回答
0

UITableView 对象的委托必须采用 UITableViewDelegate 协议。协议的可选方法允许委托管理选择、配置部分标题和页脚、帮助删除方法。

在此处输入图像描述 </p>

于 2013-06-19T13:22:40.337 回答