菜鸟教程小白 发表于 2022-12-13 08:52:56

ios - 使用 mach 端口的 Theos 应用间通信


                                            <p><p>我正在尝试在 iOS 8 上的应用和控制台应用(使用 theos)之间发送数据。</p>

<p>我试过了:</p>

<p><strong>应用程序</strong>:</p>

<p><code>CFMessagePortRef port = CFMessagePortCreateLocal(kCFAllocatorDefault, CFSTR("co.test"), &message_callback, NULL, NULL);</code></p>

<p>这很好用。 <code>NSLog(@"%@", port)</code> 返回:</p>

<p><code><CFMessagePort 0x17018bef0 >{locked = Maybe,valid = Yes,remote = No,name = co.test,source = 0x0,callout = message_callback (0x1000e979c),context = <CFM​​essagePort context 0x0> }</code></p>

<p><strong>但是,当尝试在控制台应用上执行相同操作时:</strong></p>

<p><code>CFMessagePortRef 端口 = CFMessagePortCreateLocal(kCFAllocatorDefault, CFSTR("co.test"),
&message_callback, NULL, NULL);</code></p>

<p>我总是得到错误:</p>

<blockquote>
<p>*** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) &#39;Permission denied&#39;, port = 0xc03, name = &#39;co.test&#39;</p>
</blockquote>

<p>即使我对两者都使用相同的 <code>com.apple.security.application-groups</code> 权利:</p>

<pre><code>&lt;key&gt;com.apple.security.application-groups&lt;/key&gt;
&lt;array&gt;
    &lt;string&gt;co.test&lt;/string&gt;
&lt;/array&gt;
</code></pre>

<p>任何人都可以阐明 - 也许上面是一种糟糕的方法,我错过了一种更简单的方法来实现我的目标?</p>

<p>我的目标是能够在 SpringBoard 上运行的应用程序和使用 theos 构建的守护程序之间传递 NSDictionary。</p>

<p><strong>注意:我无意在应用商店分发此应用</strong></p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><blockquote>
<p>Application: .......<code>CFSTR(&#34;co.test&#34;)</code><br/>
Console App: ... <code>CFSTR(&#34;co.test&#34;)</code></p>
</blockquote>
<p>您需要在应用程序组标识符的末尾附加一个附加字符串。</p>
<blockquote>
<p>Apple:</p>
<p>Mach port names must begin with the application group identifier, followed by a period (.), followed by a name of your choosing.</p>
<p>For example, if your application group’s name is <code>Z123456789.com.example.app-group</code>, you might create a Mach port named <code>Z123456789.com.example.app-group.Port_of_Kobe</code>.</p>
</blockquote>
<p> <a href="https://stackoverflow.com/questions/9889186/cfmessageport-and-sandboxing/52886161" rel="noreferrer noopener nofollow">CFMessagePort and sandboxing</a> </p>
<p>如果您使用相同的消息端口名称创建多个消息端口,似乎会发生另一次崩溃。可能来自具有相同捆绑 ID 的应用程序或其他一些应该只有一个消息端口并且已经在运行的情况。</p>
<p>当我从 <code>/Applications/</code> 运行我的 macOS 应用程序的一个版本并通过 Xcode 运行另一个版本时,我注意到了这一点。</p>
<blockquote>
<p>*** CFMessagePort: bootstrap_register(): failed 1100 (0x44c) &#39;Permission denied&#39;, port = 0xcd07, name = &#39;XXXYYYZZZZ.MyAppGroupName&#39;</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 mach 端口的 Theos 应用间通信,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31182144/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31182144/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 mach 端口的 Theos 应用间通信