0

我正在尝试创建一个 UITableViewController,它的 UITableViewCell 是一个 xib 文件。Xib 文件为空(0 个控件)所有控件都是这样以编程方式创建的

- (id) initWithTitle: (NSString*)p_title andImage: (UIImage*)p_image
{
    //adding checkbox & title
    MMCheckbox* myCheckbox = [[MMCheckbox alloc] initWithTitle:p_title andHeight:20];
    myCheckbox.frame = CGRectMake(self.frame.size.width - myCheckbox.frame.size.width -15,20, myCheckbox.frame.size.width, 20);
    myCheckbox.flat = YES;
    myCheckbox.strokeColor = [UIColor whiteColor];
    myCheckbox.checkColor = [UIColor magentaColor];
    myCheckbox.uncheckedColor = [UIColor clearColor];
    myCheckbox.tintColor = [UIColor clearColor];
    [self addSubview:myCheckbox];

    //adding the image
    UIImageView* imageView = [[UIImageView alloc] initWithFrame:CGRectMake (15, 10, 20, 20)];
    [imageView setImage: p_image];

    return self;
}

在 xib 文件中,我放置了一个 UITableViewCell 并将它的类设置为我的类 MMCheckboxTableViewCell

在此处输入图像描述

在我的 tableViewController 中,我正在创建从 NIB 加载它的单元格,就像这样

- (UITableViewCell *)tableView:(UITableView *)p_tableView cellForRowAtIndexPath:(NSIndexPath *)p_indexPath
{
//create a UI tableViewCell
    UITableViewCell* cell = [p_tableView
                             dequeueReusableCellWithIdentifier:@"comboBoxCell"];
    if(cell == nil)
    {
        UIViewController *temporaryController = [[UIViewController alloc] initWithNibName:@"MMComboBoxTableCell" bundle:nil];
        // Grab a pointer to the custom cell.
        cell = (MMComboBoxTableCell *)temporaryController.view;
    }
}

我已经查看了许多具有相同问题的帖子,并检查了我是否根据问题做对了所有事情。

请让我知道我错过了什么。

4

1 回答 1

1

我的问题在于我加载 XIB 的方式。

通过更改以下内容:

UIViewController *temporaryController = [[UIViewController alloc] initWithNibName:@"MMComboBoxTableCell" bundle:nil];

对此:

MMComboBoxTableCell* temporaryController = [[[NSBundle mainBundle] loadNibNamed:@"MMComboBoxTableCell" owner:self options:nil] objectAtIndex:0];

问题解决了。

于 2013-09-10T00:09:34.143 回答