Callkit , how to disable video button when locking screen?
问题 As new feature of iOS10, CallKit is powerful. When the screen is locked, how can I disable the "Video" Button ? like the pic bottom: example 回答1: You must set supportsVideo property in CXProviderConfiguration to NO. And non set supportedHandleTypes. 回答2: You can set CXProviderConfiguration class property "supportsVideo" to NO, like below. CXProviderConfiguration *configuration = [[CXProviderConfiguration alloc]initWithLocalizedName:@"app name"]; configuration.supportsVideo = NO; It will