Replies: 2 comments 1 reply
-
Sorry, I found a solution |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, there is still an array of data in the obj[data] object, how can I access it through a loop? The code below gives an error
///
for (int row = 0; row < sizeof(obj["data"]); row++)
{
json objMain = obj["data"];
std::string stringh = objMain["name"];
ImGui::Text(stringh.c_str());
}
///
Beta Was this translation helpful? Give feedback.
All reactions