2015-08-26 38 views

回答

4

通道信息寫在安裝類中。只需清除「通道」欄。

ParseInstallation installation = ParseInstallation.getCurrentInstallation(); 
installation.remove("channels"); 
installation.saveEventually(new SaveCallback() { // or saveInBackground 
    @Override 
    public void done(ParseException e) { 
     // TODO: add code here 
    } 
}); 
相關問題