文字列からhtml記号を変換してNSDictionaryに挿入する関数があります。おそらくメソッドまたは構文エラーだと思います。
HTML値を変換する関数:
- (NSString *)convertMathSymbol:(NSString *)str{
str = [str stringByReplacingOccurrencesOfString:@"−" withString:@"− "];
str = [str stringByReplacingOccurrencesOfString:@"÷" withString:@"÷ "];
str = [str stringByReplacingOccurrencesOfString:@"&multiply;" withString:@"× "];
return str;
}
NSDictionaryへの挿入:
NSString *tempAns1 = [[sample objectAtIndex:0]objectAtIndex:1];
[answer setObject:[[self convertMathSymbol:tempAns1] forKey:@"1"]];
エラー:
No visible @interface for 'NSString' declares the selector 'forKey:'
ポインタに感謝します...事前に感謝します...