Skip to content Skip to sidebar Skip to footer

Parseuser.getlist() In Parse Database

I am creating a twitter like app where we can follow other users and read their tweets. ParseUser.getCurrentUser().getList('isFollowing').remove(users.get(position)); List

Solution 1:

You are not "downloading" the list in any of these lines. You are accessing the list that is already cached in your device. In order to fetch the latest data you need to use:

ParseUser.getCurrentUser().fetch();

Post a Comment for "Parseuser.getlist() In Parse Database"