Okay so the following is my ParseQuery. How can I display most but not all of the records in random order using Collections.shuffle() in this context? For example, I have a specific record that I want …
Advertisement
Tag: parse-platform
query.orderByRandom with Parse.com? – Displaying records in random order
I understand that you can do the following… query.orderByAscending(“rowValue”); query.orderByDescending(“rowValue”); But what if you actually want your data to come out in random order every time …
Advertisement