编辑:Thanx到user2404543,我发现了我的错误。编辑代码以显示修复。
我有一个tableViewController,用于设置一个包含状态列表的表。我试图使用UIColor设置其cell.background颜色,UIColor是NSMutableArray中对象的一部分。该对象由NSString stateName,NSString stateNickName,NSString licensePlateURL和UIColor颜色组成。对象的所有元素都按预期填充表,但是,当我尝试使用对象中的“color”元素设置cell.backgroundColor时,出现错误。以下是相关代码:
stateObject.h包含以下信息:
@interface stateObject : NSObject
@property (strong,nonatomic) NSString *stateName;
@property (strong,nonatomic) NSString *nickName;
@property (strong,nonatomic) NSString *licensePlateURL;
@property (strong,nonatomic) UIColor *bkgColor;
-(void) createState:(NSString*) name nickName:(NSString*) nName licenseURL:(NSString*) url color:(UIColor*) color;
@end
这里是stateObject.m文件信息:
@synthesize stateName,nickName,licensePlateURL,bkgColor;
-(void) createState:(NSString *)name nickName:(NSString *)nName licenseURL:(NSString *)url color:(UIColor *)color
{
stateName = name;
nickName = nName;
licensePlateURL = url;
bkgColor = color;
}
该对象在我的dataSource类中设置并添加到我的NSMutableArray中,该对象如下所示:
stateObject *newState1 = [[stateObject alloc] init];
[newState1 createState:@"Alabama" nickName:@"Yellowhammer State" licenseURL:@"http://www.15q.net/us1/al09a.jpg" color:[UIColor whiteColor]];
alabama = newState1;
我使用的方法是:
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{//This line is now correct and properly sets the backgroundColor.
cell.backgroundColor = [self.stateArray[indexPath.section][indexPath.row]bkgColor];
}
我得到的错误是:
assignment2[11591:c07] -[stateObject color]: unrecognized selector sent to instance 0x759b620
assignment2[11591:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[stateObject color]: unrecognized selector sent to instance 0x759b620'
如果我只是在所述方法中创建一个UIColor对象,然后将值设置为该对象,那么它可以正常工作,那么我做错了什么?
我需要从数组中使用UIColor的全部原因是,即使我将它们从屏幕上滚动,单元格也会保留它们的颜色。如果我只是在
中设置颜色,他们就不会这样做- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
方法
答案 0 :(得分:1)
错误消息指出您的stateObject无法响应消息“color”。换句话说,您的类stateObject没有名为“color”的方法。