I'm retrieving a list of "read messages" that I store by objectID when clicking on a detail view. Now I'm attempting to retrieve these objectID's from the array like so:
JSONArray myArray = ParseUser.getCurrentUser().getJSONArray("read_messages");
But how would I iterate through each string in that array for example Log each one in the console?