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<String> tmpUsers=ParseUser.getCurrentUser().getList("isFollowing"); ParseUser.getCurrentUser().remove("isFollowing"); ParseUser.getCurrentUser().put("isFollowing", tmpUsers); The above code runs when user wants to unfollow. I had a doubt in: ParseUser.getCurrentUser().getList("isFollowing").remove(users.get(position)); List