如何在 React Native 0.60.0 和 react-native-carplay 之间进行配置?
我正在关注https://www.npmjs.com/package/react-native-carplay中的示例,但我在 Xcode 上收到错误消息。我认为这是新版本更改的错。
我想使用当前版本。有人能帮我吗?
添加#import #import <RNCarPlay.h>
AppDelegate.m
错误 => 'RNCarPlay.h' 文件未找到
在@end 之前添加方法
(void)application:(UIApplication *)application didConnectCarInterfaceController:(CPInterfaceController *)interfaceController toWindow:(CPWindow *)window { [RNCarPlay connectWithInterfaceController:interfaceController window:window]; }
(void)application:(nonnull UIApplication *)application didDisconnectCarInterfaceController:(nonnull CPInterfaceController *)interfaceController fromWindow:(nonnull CPWindow *)window { [RNCarPlay disconnect]; }
错误 => 使用未声明的标识符“RNCarPlay”
import { CarPlay, GridTemplate } from 'react-native-carplay';
const template = new GridTemplate({ /* .. */ });
CarPlay.setRootTemplate(template, false);