-(void)onGetLiveRoomInfoDone:(LiveRoomInfoEvent*)event
{
NSLog(@"Joined Users= %@",event.joinedUsers);
NSLog(@"Room Properites = %@",event.properties);
}
I am using iOS sdk. In above method, event.properties type is NSDictionary but when i print the data it shows me String value. I also confirmed the data type which shows me NSString which causes the crash in this method when i transfer the properties to my local dictionary variable.