所以我有几个 NSMutableDictionarys 并且特定字典的每个键/值对都包含一个字符串或整数值。我想知道是否有办法遍历字典并连接值。在 PHP 中,我可以使用数组来做这样的事情
// either the dictionary holds all integers or all string values
$integer_array = array( 'a' => 2, 'b' => 9, 'c' => 2, 'd' => 0, 'e' => 1 );
foreach( $integer_array as $key => $value ) {
$concatenated_value .= $value;
}
// cast to int
$concatenated_value = ( int ) $concatenated_value;
// prints: 29201
echo $concatenated_value;
我也可以使用implode( )
$concatenated_value = ( int )(implode("", $integer_array));
// prints: 29201
echo $concatenated_value;
iOS Objective-C 有类似的东西吗?