Kelas ACSSpotlightCallFeature
Deklarasi
@interface ACSSpotlightCallFeature : ACSCallFeature;
Deskripsi
Fitur Panggilan untuk mengelola status sorotan dalam panggilan.
Metode
cancelAllSpotlights
Kirim permintaan untuk menghentikan sorotan bagi semua peserta yang disorot
-(void)cancelAllSpotlightsWithCompletionHandler:(void (^)(NSError *error))completionHandler;
Parameter
completionHandler
- Blok yang akan dipanggil secara asinkron setelah operasi selesai.
Mengembalikan
void
Sorotan
Mulai sorotan untuk peserta.
-(void)spotlight:(NSArray<id<CommunicationIdentifier>>* _Nonnull)identifiers
withCompletionHandler:(void (^ _Nonnull)(NSError * _Nullable error))completionHandler;
Parameter
identifiers
- Peserta untuk memulai sorotan.completionHandler
- Blok yang akan dipanggil secara asinkron setelah operasi selesai.
cancelSpotLights
Batalkan sorotan untuk peserta yang disorot.
-(void)cancelSpotlights:(NSArray<id<CommunicationIdentifier>>* _Nonnull)identifiers
withCompletionHandler:(void (^ _Nonnull)(NSError * _Nullable error))completionHandler;
Parameter
identifiers
- Peserta membatalkan sorotan.completionHandler
- Blok yang akan dipanggil secara asinkron setelah operasi selesai.
Properti
delegasi
Objek yang Anda berikan untuk menerima peristiwa dari instans ACSSpotlightCallFeature ini.
@property(nonatomic, assign) id<ACSSpotlightCallFeatureDelegate> delegate;
maxSpotlightedParticipants
Kirim permintaan untuk mengembalikan jumlah maksimum peserta yang dapat disorot
@property (readonly) int maxSpotlightedParticipants;
spotlightedParticipants
Kirim permintaan untuk mendapatkan daftar semua peserta yang disorot
@property (copy, nonnull, readonly) NSArray<ACSSpotlightedParticipant *> * spotlightedParticipants;