objective-c 函数的转换
比如有如下一个函数
1 | // ASRTTModel.m |
在终端运行下面代码,会生成一个ASRTTModel.cpp文件
1 | clang -rewrite-objc ASRTTModel.m |
在该文件中,我们会发现上面方法被转换成c函数实现
1 | // 这是 func1 的IMP |
比如有如下一个函数
1 | // ASRTTModel.m |
在终端运行下面代码,会生成一个ASRTTModel.cpp文件
1 | clang -rewrite-objc ASRTTModel.m |
在该文件中,我们会发现上面方法被转换成c函数实现
1 | // 这是 func1 的IMP |
创建新文件夹比如 2048-rn-app ,在该文件夹下面
1 | mkdir ios |
将原有项目移到ios文件夹下
在 2048-rn-app 下创建 _package.json_,并写入以下内容(可自行更改参数)
1 | { |
安装react和react native:在命令行运行
1 | yarn add react react-native |
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment