0

我正在使用自定义单元格来显示信息。当我使用 NSString 将信息传递给 UILabel 时,出现以下错误。

错误:

[HITEstimationCustomViewCell isEqualToString:]:无法识别的选择器发送到实例 0x6892f80

2012-10-23 01:38:04.821 MyApp [13298:c07] *由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[HITEstimationCustomViewCell isEqualToString:]:无法识别的选择器发送到实例 0x6892f80

单元格详细信息:

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

    static BOOL nibsRegistered = NO;

    if(!nibsRegistered)
    {
        UINib *nib = [UINib nibWithNibName:@"HITEstimationCustomViewCell" bundle:nil];

        [tableView registerNib:nib forCellReuseIdentifier:CellIdentifier];

        nibsRegistered = YES;
    }


    HITEstimationCustomViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    NSUInteger row = [indexPath row];
    NSString *rowData =[estimationListArray objectAtIndex:row];

    cell.nameTextField = rowData;
    cell.emailIdTextField = [estimationListArray objectAtIndex:row];

return cell;
'

实例:

HITEstimationCustomViewCell *newCell = [[HITEstimationCustomViewCell alloc] initWithNameField:@"Michael" emailId:@"mike@mike.com" skypeId:@"mrmike" hourlyRate:@"$25" numberOfHours:@"20" totalCost:@"$1000"];

    NSMutableArray *myArray = [[NSMutableArray alloc] initWithObjects:newCell, nil];

self.estimationListArray = myArray;

界面:

@interface HITEstimationCustomViewCell : UITableViewCell

@property (weak, nonatomic) IBOutlet UILabel *nameField;
@property (weak, nonatomic) IBOutlet UILabel *totalCost;
@property (weak, nonatomic) IBOutlet UILabel *hourlyRate;
@property (weak, nonatomic) IBOutlet UILabel *emailId;
@property (weak, nonatomic) IBOutlet UILabel *skypeId;
@property (weak, nonatomic) IBOutlet UILabel *numberOfHours;

@property (copy, nonatomic) NSString *nameTextField;
@property (copy, nonatomic) NSString *totalCostTextField;
@property (copy, nonatomic) NSString *hourRateTextField;
@property (copy, nonatomic) NSString *emailIdTextField;
@property (copy, nonatomic) NSString *skypeIdTextField;
@property (copy, nonatomic) NSString *numberOfHoursTextField;


-(id)initWithNameField:(NSString *)name emailId:(NSString *)email skypeId:(NSString *)skype hourlyRate:(NSString *)hourlyPrice numberOfHours:(NSString *)Hours totalCost:(NSString *)total;


@end

执行:

@implementation HITEstimationCustomViewCell

@synthesize nameField;
@synthesize totalCost;
@synthesize hourlyRate;
@synthesize emailId;
@synthesize skypeId;
@synthesize numberOfHours;

@synthesize nameTextField;
@synthesize totalCostTextField;
@synthesize hourRateTextField;
@synthesize emailIdTextField;
@synthesize skypeIdTextField;
@synthesize numberOfHoursTextField;



-(void)setNameTextField:(NSString *)n
{
    if(![n isEqualToString:nameTextField])
    {
        nameTextField = [n copy];

        nameField.text = nameTextField;
    }
}


-(id)initWithNameField:(NSString *)name emailId:(NSString *)email skypeId:(NSString *)skype hourlyRate:(NSString *)hourlyPrice numberOfHours:(NSString *)Hours totalCost:(NSString *)total
{

    self = [super init];
    if(self)
    {

        self.nameTextField = name;
        self.emailIdTextField = email;
        self.skypeIdTextField =skype;
        self.hourRateTextField = hourlyPrice;
        self.numberOfHoursTextField = Hours;
        self.totalCostTextField = total;

    }

    return self;
}

我对 IOS 和 XCode 非常陌生,并且一直在尝试在论坛上找到的很多东西,但无法解决问题。

4

1 回答 1

2

错误消息告诉你你需要知道的一切:

[HITEstimationCustomViewCell isEqualToString:]: unrecognized selector sent to instance
       ^                              ^
       Class Name                     Method Name

您正在isEqualToString:调用HITEstimationCustomViewCell.

看看你在哪里打电话isEqualToString:并向后工作。您会看到您正在HITEstimationCustomViewCell为该属性分配一个实例nameTextField,而不是一个NSString.

于 2012-10-22T20:59:21.270 回答