react-native-permissions - iOS - requestNotifications()

cvxl0en2  于 2023-08-07  发布在  React
关注(0)|答案(1)|浏览(98)

使用“requestNotifications”函数的正确方法是什么?在库“react-native-permissions”中定义。
我试探着:

await requestNotifications({
            sound: true,
            vibrate: true,
            alert: true,
        });

字符串
但是我得到了错误“。如果无法将类型NSMutableDisctionary转换为NSArray”
这个函数调用有什么问题?
函数声明为requestNotifications(options: NotificationOption[]): Promise<NotificationsResponse>;

ecbunoof

ecbunoof1#

函数要求数组包含字符串而不是对象。所以你的代码看起来应该像requestNotifications(['alert', 'sound'])
可能的选项:'alert'|'徽章'|‘声音’|'criticalAlert'|'carPlay'|'临时'|'providesAppSettings';
更多信息

相关问题