菜鸟教程小白 发表于 2022-12-13 13:38:24

ios - 设置错误消息中未启用 UIAutomation


                                            <p><p>当我用
<code>[.frontMostApp isVisible]</code> 在 main.mm 主函数中,我得到异常说 </p>

<blockquote>
<p><strong>* exception UIAutomation is not enabled on this device. UIAutomation must be enabled in Settings. *</strong></p>
</blockquote>

<p>但我已启用设置->开发人员->在设备中启用自动化 UI。 iOS 版本:8.1.2 和 8.0.1 越狱。</p>

<pre><code> int main(int argc, char **argv, char **envp)
{
    @autoreleasepool {

      @try
      {

            [.frontMostApp isVisible];

            if (.springboard.pid == nil)
            {
                return 0;
            }
      }
      @catch (NSException *exception)
      {
            NSLog(@&#34;*** exception %@ ***&#34;,exception);
            return 0;
      }
    }
}
</code></pre>

<p>我看过这个链接<a href="https://github.com/kif-framework/KIF/issues/707" rel="noreferrer noopener nofollow">https://github.com/kif-framework/KIF/issues/707</a>以及 UIATarget frontMostApp 的一些 Apple 引用文档,但到目前为止我没有找到解决方案。</p>

<p>iOS版本有这个问题吗?我该如何解决这个问题?任何帮助表示赞赏。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的 UIAuomation 设置 plist 将为每个应用程序单独创建,以防发生调整。</p>

<p>在 <code>/private/var/mobile/Containers/Data/Application/XXXXXXXX-ACAB-4FC9-AE3E-XXXXXX/Library/Preferences/com.apple.UIAutomation.plist</code> 和 <code> 中启用它>重新启动</code>您的设备以消除此错误。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 设置错误消息中未启用 UIAutomation,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34870587/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34870587/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 设置错误消息中未启用 UIAutomation