菜鸟教程小白 发表于 2022-12-13 01:23:34

ios - 如何从 Objective-C 调用 C 函数


                                            <p><p>我目前正在尝试使用 FFmpeg 在 iOS 上转换视频。
我在 <a href="https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/transcoding.c" rel="noreferrer noopener nofollow">transcoding.c</a> 中修改了他们的示例根据我的需要。</p>

<p>我实际上如何从 Objective-C 调用以下函数:</p>

<pre><code>int mainFunction(int argc, char **argv);
</code></pre>

<p>我不确定如何提供来自 Objective-C 的参数。
任何帮助将不胜感激。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>Objective-C 是 C 的超集。您需要做的就是从 Objective-C 代码中调用它。</p>

<pre><code> char* args[] = { &#34;foo&#34;, &#34;bar&#34;, NULL }; // Might need the NULL to emulate command line arguments.
int result = mainFunction(2, args);
</code></pre>

<p>你可以直接从你自己的 <code>main</code></p> 传递 argc 和 argv

<pre><code> int main(int argc, char** argv)
{
      int result = mainFunction(argc, argv);
}
</code></pre>

<p>如果您的参数位于 NSStrings 数组中,则需要将它们转换为 C 字符串的普通 C 数组:</p>

<pre><code>char** cStringArray = malloc(( + 1) * sizeof(char*));
for (int i = 0 ; i &lt; ; ++i)
{
   NSString* aString = ;
   cStringArray = ;
}
cStringArray[] = NULL;
int result = mainFunction(, cStringArray);
free(cStringArray);
</code></pre>

<p>自从我上次做任何 Objective-C 以来已经很长时间了,所以对于任何语法错误表示歉意。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何从 Objective-C 调用 C 函数,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/43873174/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/43873174/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何从 Objective-C 调用 C 函数