我正在研究Kinvey iOS SDK。我的要求是我想在注册时将用户添加到特定组。
实际上在我的案例中有两个名为General& amp;特别&我想默认将用户添加到General组。任何人都知道如何使用Kinvey iOS SDk实现这一点吗?
我发现Andriod SDK具有将用户添加到组中的功能,如下所示
public void submit(View view) {
kinveyClient.userGroup().addUserToGroup("13", "15", null new KinveyClientCallback () {
public void onFailure(Throwable t) { ... }
public void onSuccess(UserGroupResponse u) { ... }
});
}
在iOS中是否有任何想法/方法可以做到这一点?任何帮助都会很棒。感谢
答案 0 :(得分:0)