typedef NS_ENUM(NSInteger, ARConnectionStateType) {
/**
1:网络连接断开
*/
ARConnectionStateDisconnected = 1,
/**
2:建立网络连接中
*/
ARConnectionStateConnecting = 2,
/**
3:网络已连接
*/
ARConnectionStateConnected = 3,
/**
4:重新建立网络连接中
*/
ARConnectionStateReconnecting = 4,
/**
5:网络连接失败
*/
ARConnectionStateFailed = 5
};
网络连接状态类型
最近更新时间:2022-09-20 05:17:40