エラーが発生しました -[NSCFString stringValue]: unrecognized selector sent to instance 0x1578c when running this code 何をしているのか理解できません 間違った名前は NSString です
self.searchValues= [[NSMutableArray alloc] init];
name=@"Bob";
if(self.name!=nil)
[searchValues addObject: [NSMutableDictionary dictionaryWithObjectsAndKeys:@"Name",@"Label",self.name,@"Value",nil]];
NSLog(@"Array value : %s",[[[searchValues objectAtIndex:0] objectForKey:@"Value"] stringValue]);