ACSIncomingCall 類別
宣告
@interface ACSIncomingCall : NSObject;
Description
描述來電
方法
accept
接聽來電
-(void)accept:(ACSAcceptCallOptions *)options withCompletionHandler:(void (^)(ACSCall * value, NSError *error))completionHandler;
參數
options
- 接受通話的選項completionHandler
- 作業完成之後,要以異步方式叫用的區塊。
傳回
void
拒絕
拒絕此連入電話
-(void)rejectWithCompletionHandler:(void (^)(NSError *error))completionHandler;
參數
completionHandler
- 作業完成之後,要以異步方式叫用的區塊。
傳回
void
屬性
Delegate - 委派
您提供從這個 ACSIncomingCall 實例接收事件的物件。
@property(nonatomic, assign) id<ACSIncomingCallDelegate> delegate;
callEndReason
描述通話結束的原因
@property (retain, nullable, readonly) ACSCallEndReason * callEndReason;
callerInfo
呼叫端的相關信息
@property (retain, nonnull, readonly) ACSCallerInfo * callerInfo;
id
呼叫的標識碼
@property (retain, nonnull, readonly) NSString * id;
isVideoEnabled
已啟用內送視訊
@property (readonly) BOOL isVideoEnabled;