5

我是新手,所以请多多包涵:

我在 IB 中有一个 .xib,其中包含一个 UIScrollView,其中嵌入了一个 UITableView。我想将自定义 UITableViewCells 加载到 UITableView 中。我在 IB 中创建了四/五个自定义单元格,但无法正确加载第一个单元格。

以下是来自 IB 的相关截图:

.xib 自定义单元格

我已将在 IB 中创建的自定义 UITableViewCell 的类设置为我创建的名为“itemCell”的 UITableView 类。此外,我已将三个文本字段出口和代表连接到“itemCell”。

这是 itemCell.h:

#import <UIKit/UIKit.h>

@interface itemCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UITextField *quantityTextField;
@property (weak, nonatomic) IBOutlet UITextField *itemTextField;
@property (weak, nonatomic) IBOutlet UITextField *priceTextField;

@end

这是 itemCell.m:

#import "itemCell.h"

@implementation itemCell
@synthesize quantityTextField,itemTextField,priceTextField;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        // Initialization code

    }
    return self;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end

在作为根控制器 .xib 的实现文件的 filecontroller.m 中,我根据用户按下按钮(将其添加到数组中)创建一个新单元格,然后重新加载 tableview。我没有收到任何错误,但我正在加载一个正常的单元格,而不是我在 IB 中创建的单元格。这是rootcontroller.m。任何帮助表示赞赏。

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    scrollView =(UIScrollView *)self.view;
    items = [[NSMutableArray alloc] init];
}

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


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        return [items objectAtIndex:[indexPath row]];
}

- (UITableViewCell *)initiateNewCell{
    itemCell *cell = [[itemCell alloc] init];
    cell.accessoryType = UITableViewCellAccessoryNone;
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;
    return cell;
}

- (IBAction)addItem:(id)sender {
    //creates the new cell to be added
    [items addObject:[self initiateNewCell]];
    [self.tableView reloadData];
4

3 回答 3

8

从 iOS 5 开始,您现在可以使用以下函数从 nib 加载 UITableViewCell 以进行单元重用。

- (void)registerNib:(UINib *)nib forCellReuseIdentifier:(NSString *)identifier

  1. 首先确保您创建一个仅包含 UITableViewCell 的 IB 文件
  2. 在识别检查器下:将 UITableViewCell 的类设置为“itemCell” 在此处输入图像描述
  3. 在属性检查器下:将 UITableViewCell 的标识符设置为“itemCellIdentifier” 在此处输入图像描述
  4. 在 viewDidLoad: 中放置以下代码,并将 itemCellNibName 替换为包含 UITableViewCell 的 nib 的名称。

    NSString *myIdentifier = @"itemCellIdentifier";
    [self.tableView registerNib:[UINib nibWithNibName:@"itemCellNibName" bundle:nil] forCellReuseIdentifier:myIdentifier];
    
  5. 在 cellForRowAtIndexPath: 中放置以下代码,您现在可以访问您在 itemCell 上设置的 IBOutlet 属性,并在 nib 中连接。

    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath
    {
         static NSString *myIdentifier = @"itemCellIdentifier";
    
         itemCell *cell = (itemCell *)[tableView dequeueReusableCellWithIdentifier:myIdentifier];
         cell.textLabel.text = [NSString stringWithFormat:@"Test Row:%i!",indexPath.row];
         return cell;
    }
    

另外:您不想将 UITableView 包含在 UIScrollView 中,UIScrollView 已经内置到 UITableView 中,它允许正确的单元格排队。

另外:我建议您在开始从数组中提取数据之前先了解这一点。

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
         return 10;
    }

另外:正如其他人所提到的,该数组包含将填充 UITableViewCells 的数据,而不是实际的单元格本身。

于 2012-12-30T03:46:56.680 回答
3

在你的

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    //This identifier string needs to be set in cell of the TableViewController in the storyboard
    static NSString *CellIdentifier = @"Cell";

    // Resuse the cell
    SomeCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // If there are no cell to be reused we create a new one
    if(cell == nil) {
        cell = [SomeCustomCell new];
    }

    // Configure the cell...
    NSString *someString = [yourArrayWithStringsOrWhatEver objectAtIndex:indexPath.row];

    // Setting the some property of your custom cell
   [cell.yourSpecificCellProperty someString];

   [cell.yourOtherSpecificCellProperty setText:@"What Ever your want!"];
}

您的单元格的属性可以是您在界面构建器中连接到您的自定义单元格的任何内容。

希望能帮助到你!

于 2012-12-29T23:50:06.307 回答
1

那么有几件事是不对的:

  • 类名以大写字母开头itemCell->ItemCell
  • 您应该重复使用该单元格。按照您想要的方式,您将为每个索引路径创建一个单独的单元格。
  • items数组应该只包含您的表格的数据源,而不是您的单元格
  • 无需调用重新加载数据,您可以只向表格添加一行,并且它也可以动画化

尝试类似:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    scrollView =(UIScrollView *)self.view;
    items = [[NSMutableArray alloc] init];
}

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


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (!cell) {
        cell = [[NSBundle mainBundle] loadNibNamed:@"itemCell" owner:self options:nil].lastObject;
        cell.reuseIdentifier = CellIdentifier;
    }

    // Do any additional setup to the cell

    return cell;
}

- (IBAction)addItem:(id)sender {
    [items addObject:[NSNumber numberWithInt:items.count]]; // Here comes the data source
    [self.tableView insertRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:items.count - 1 inSection:0]] withRowAnimation:UITableViewRowAnimationAutomatic];
}

PS:我是在没有IDE的情况下写的,所以可能会有一些错误

于 2012-12-29T23:50:56.650 回答