我有一个像这样的 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;
};