0

我正在尝试创建一个自定义键盘,显示一个选项列表。

我创建了一个 xib 文件(基于UIView),它只包含一个UITableView.

我已经创建了ListKeyBoardView.h 和ListKeyBoardView.m(参见下面的代码)。在ListKeyBoardView.m我加载 nib 文件时,UITableView来自 xib 的文件连接到 UITableView ithrough Interface Builder。加载 nib 文件后,我检查了UITableView. 它与 Interface Builder 中的大小相同UITableView,因此似乎连接正确。但是,当我运行应用程序并显示视图时,它完全是空白的。

我在UITableView代码中设置了委托和数据源,方法tableView:numberOfRowsInSection:被调用(返回 6),但tableView:cellForRowAtIndexPath:没有被调用。

为了检查其他错误,我在UITableView代码中手动创建了(见注释行),然后它工作正常。我错过了什么?

#import "ListKeyBoardView.h"

@interface ListKeyBoardView () <UITableViewDelegate, UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *listTableView;
@property (strong, nonatomic) NSMutableArray *listData;

@end


@implementation ListKeyBoardView

- (id)init {
    return [self initWithFrame:CGRectMake(0, 0, 320, 250)];
}

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
         [[NSBundle mainBundle] loadNibNamed:@"ListKeyboard" owner:self options:nil];
//        self.listTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)];

        NSLog(@"Frame = %f, %f", self.listTableView.frame.size.width, self.listTableView.frame.size.height);
        [self addSubview:self.listTableView];

        self.listTableView.delegate = self;
        self.listTableView.dataSource = self;

        [self.listTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"ListItem"];

        self.listData = [[NSMutableArray alloc] init];
        [self.listData addObject:@"een"];
        [self.listData addObject:@"twee"];
        [self.listData addObject:@"drie"];
        [self.listData addObject:@"vier"];
        [self.listData addObject:@"vijf"];
        [self.listData addObject:@"zes"];
    }
    return self;
}


#pragma mark UITableViewDataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
     return [self.listData count];
}

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

    if (cell == nil) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...
    cell.textLabel.text = [self.listData objectAtIndex:indexPath.row];

    return cell;
}
@end
4

2 回答 2

0

你忘了执行-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

像这样做:

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}
于 2013-10-14T17:49:30.670 回答
0

这里的问题是 tableView 是在故事板中创建的,因此调用了 initWithCoder 而不是 initWithFrame。

要解决,重写 initWithCoder 而不是 initWithFrame 并且不要重写 init 方法来调用 initWithFrame。

于 2016-09-21T10:40:38.100 回答