NIMRobotManager Protocol Reference

Conforms to NSObject
Declared in NIMRobotManagerProtocol.h

Overview

机器人管理器

– allRobots required method

获取所有的机器人

- (nullable NSArray<NIMRobot*> *)allRobots

Return Value

所有机器人信息

Discussion

获取所有的机器人

Declared In

NIMRobotManagerProtocol.h

– isValidRobot: required method

是否是有效的机器人

- (BOOL)isValidRobot:(NSString *)userId

Parameters

userId

用户Id (机器人在云信的id)

Return Value

是否是机器人

Discussion

是否是有效的机器人

Declared In

NIMRobotManagerProtocol.h

– robotInfo: required method

获取机器人信息

- (nullable NIMRobot *)robotInfo:(NSString *)userId

Parameters

userId

用户Id (机器人在云信的id)

Return Value

机器人信息

Discussion

获取机器人信息

Declared In

NIMRobotManagerProtocol.h

– fetchAllRobotsFromServer: required method

远程获取机器人信息

- (void)fetchAllRobotsFromServer:(nullable NIMRobotsHandler)completion

Parameters

completion

机器人获取回调

Discussion

远程获取机器人信息

Declared In

NIMRobotManagerProtocol.h