辞書のキーがメソッドパラメータの文字列と同じであることを確認するにはどうすればよいですか? つまり、以下のコードでは、dictobj は NSMutableDictionary のオブジェクトであり、dictobj の各キーについて、文字列と比較する必要があります。これを達成する方法は?NSString のキーを型変換する必要がありますか??
-(void)CheckKeyWithString:(NSString *)string
{
//foreach key in NSMutableDictionary
for(id key in dictobj)
{
//Check if key is equal to string
if(key == string)// this is wrong since key is of type id and string is of NSString,Control doesn't come into this line
{
//do some operation
}
}
}