1

我正在尝试创建一个仅将 UITableView 作为该视图一部分的视图。我相信这是从代码(不是界面构建器)创建时的正确模式,但如果我的方法也有错误,请随时添加建议。

我得到的例外是: [KBSMoreViewController tableView:numberOfRowsInSection:]: unrecognized selector sent to instance

我有一个如下的类头(我在实现中实现构造函数):

#import <UIKit/UIKit.h>
@interface KBSMoreTableView : UITableView 
- (id)initWithFrame:(CGRect)frame style:(UITableViewStyle)style;
@end

然后我有一个 ViewController 类头:

@interface KBSMoreViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@end

ViewController 是选项卡栏的一部分并且工作正常(在我尝试添加的 tableview 之外)实现写为:

#import "../Models/KBSMoreTableView.h"

@interface KBSMoreViewController ()
@property (strong, nonatomic) KBSMoreTableView* tableView;
@property (strong, nonatomic) NSString* cellIdentifier;
@property (copy, nonatomic) NSArray *source;

@end

@implementation KBSMoreViewController


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        self.tabBarItem = [[UITabBarItem alloc] initWithTabBarSystemItem:UITabBarSystemItemMore tag:0];
        self.source = [[NSArray alloc] initWithObjects:@"Test1", @"Test2", nil];
        self.cellIdentifier = @"MoreCellId";
    }
    return self;
}


- (NSInteger)numberOfRowsInSection:(NSInteger)section
{
    return self.source.count;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:self.cellIdentifier];
    if (cell == nil)
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:self.cellIdentifier];
    cell.textLabel.text = self.source[indexPath.row];
    return cell;
}


- (void)viewDidLoad
{
    [super viewDidLoad];
    self.tableView = [[KBSMoreTableView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame] style:UITableViewStylePlain];
    self.tableView.dataSource = self;
    self.tableView.delegate = self;
    [self.view addSubview:self.tableView];
}
4

1 回答 1

7

错误非常明显。您没有实现tableView:numberOfRowsInSection:表视图数据源方法。相反,您创建了一个名为numberOfRowsInSection:.

改变这个:

- (NSInteger)numberOfRowsInSection:(NSInteger)section

至:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
于 2013-09-14T20:19:57.350 回答