使用“requestNotifications”函数的正确方法是什么?在库“react-native-permissions”中定义。
我试探着:
await requestNotifications({
sound: true,
vibrate: true,
alert: true,
});
字符串
但是我得到了错误“。如果无法将类型NSMutableDisctionary转换为NSArray”
这个函数调用有什么问题?
函数声明为requestNotifications(options: NotificationOption[]): Promise<NotificationsResponse>;
1条答案
按热度按时间ecbunoof1#
函数要求数组包含字符串而不是对象。所以你的代码看起来应该像
requestNotifications(['alert', 'sound'])
可能的选项:'alert'|'徽章'|‘声音’|'criticalAlert'|'carPlay'|'临时'|'providesAppSettings';
更多信息