gpt4 book ai didi

iphone - 如何从 xib 创建自定义 uitableViewCell

转载 作者:行者123 更新时间:2023-12-03 18:34:00 27 4
gpt4 key购买 nike

我想创建一个自定义 TableViewCell,我希望在其上具有可编辑的 UITextField。所以我用 xib 创建了新类。添加 TableViewCell 元素。拖动它的 UITextField。在我的类(class)中添加 socket 并将它们连接在一起。在我的 TableView 方法 cellForRowAtIndexPath 中,我创建了自定义单元格,但它们不是我的自定义单元格 - 它们只是普通单元格。我该如何解决这个问题,为什么会这样?谢谢!

//编辑单元格。

#import <UIKit/UIKit.h>


@interface EditCell : UITableViewCell
{
IBOutlet UITextField *editRow;
}
@property (nonatomic, retain) IBOutlet UITextField *editRow;
@end

//EditCell.m

#import "EditCell.h"


@implementation EditCell
@synthesize editRow;

#pragma mark -
#pragma mark View lifecycle

- (void)viewDidUnload
{
// Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
// For example: self.myOutlet = nil;
self.editRow = nil;
}
@end

//在我的代码中

- (UITableViewCell *)tableView:(UITableView *)tableView 
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"EditCell";

EditCell *cell = (EditCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[EditCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier] autorelease];
}
cell.editRow.text = @"some text to test";
return cell;
}

最佳答案

不要使用 UITableViewCell 的初始值设定项,而是从 Nib 加载单元格:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
static NSString *CellIdentifier = @"EditCell";

EditCell *cell = (EditCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"YourNibNameHere" owner:self options:nil];
cell = (EditCell *)[nib objectAtIndex:0];
}
cell.editRow.text = @"some text to test";
return cell;
}

当然,您需要指定正确的 Nib 名称。

关于iphone - 如何从 xib 创建自定义 uitableViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4195726/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com