我正在使用自定义单元格来显示信息。当我使用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& amp; XCode并且一直在尝试在论坛上发现很多东西,但却无法解决问题。
答案 0 :(得分:2)
错误消息告诉您需要知道的一切:
[HITEstimationCustomViewCell isEqualToString:]: unrecognized selector sent to instance
^ ^
Class Name Method Name
您正在isEqualToString:
的实例上调用HITEstimationCustomViewCell
。
查看您拨打isEqualToString:
的位置并向后工作。您会看到,您要将HITEstimationCustomViewCell
个实例分配给nameTextField
媒体资源,而不是NSString
。