|
@@ -208,7 +208,12 @@ static inline void wd_playControl_queue(void (^block)(void)){
|
|
|
}
|
|
|
|
|
|
-(void)ReceivedSetVolumeCallBack:(NSString *)nUDN Volume:(NSInteger)Volume{
|
|
|
- NSLog(@"%s",__func__);
|
|
|
+ wd_main_queue(^{
|
|
|
+ if ([nUDN isEqualToString:self.device.deviceUUID]) {
|
|
|
+ NSLog(@"收到设备音量回调SetZoneVolumeCallBack:%zd",Volume);
|
|
|
+ [self.listeners makeObjectsPerformSelectorWithObjects:@selector(didReceiveVolumeChange:),(float)Volume];
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
-(void)ReceivedSetMuteCallBack:(NSString *)nUDN Mute:(NSInteger)Mute{
|