次のような NSDictionary オブジェクトがあります。
dictionary: {
data = {
"access_token" = "xxx";
"expires_in" = 00;
"refresh_token" = "yyy";
"token_type" = bearer;
};
}
「データ」オブジェクトを削除するにはどうすればフラット化できますか? それを行う簡単な方法はありますか?したがって、出力は次のようになります。
dictionary: {
"access_token" = "xxx";
"expires_in" = 00;
"refresh_token" = "yyy";
"token_type" = bearer;
};