グループ名の変更

グループのオーナーは、以下のサンプルのように changeName(_:_:) メソッドを使ってグループ名を変更できます。

Swift:

  • do{
      // Change the group name.
      try group.changeNameSynchronous("myNewGroupName")
    } catch let error as NSError {
      // Handle the error.
      return
    }
  • // Change the group name.
    group.changeName("myNewGroupName") { (group : KiiGroup?, error : Error?) -> Void in
      if error != nil {
        // Handle the error.
        return
      }
    }

Objective-C:

  • NSError *error;
    
    // Change the group name.
    [group changeGroupNameSynchronous:@"myNewGroupName" withError:&error];
    if (error != nil) {
      // Handle the error.
      return;
    }
  • // Change the group name.
    [group changeGroupName:@"myNewGroupName" withBlock:^(KiiGroup *group, NSError *error) {
      if (error != nil) {
        // Handle the error.
        return;
      }
    }];

グループ名は 190 文字までで、使用できる文字などの制限は特にありません。既存のグループ名との重複も可能です。

グループ名を変更しても ID や URI は変わりません。