菜鸟教程小白 发表于 2022-12-13 02:11:54

ios - 隐藏 iOS 标准控件的 subview 的风险


                                            <p><p>我想在一些 iOS 标准控件中隐藏特定的 subview 。假设它是 <code>MPMoviePlayerViewController</code>。 </p>

<pre><code>MPMoviePlayerViewController *standartPlayer = [ initWithContentURL:];

...

for (UIView *subView in standartPlayer.view.subviews) {
    if (subView.backgroundColor == )
      ;
}
</code></pre>

<p>再说一遍,我可以在 <code>MPMoviePlayerViewController</code> 中找到一些背景颜色为红色的 View 并将它们隐藏起来。</p>

<p>我没有使用私钥或私有(private)类名来查找 View 。此外,如果 Apple 使用新版本更改某些内容,例如</p>,此代码也不会导致崩溃

<pre><code>[ setHidden:YES];
</code></pre>

<p>我的问题是,这是否足够安全,可以通过 AppStore 的 Apple Review?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在下面的原始答案中,我认为您是在征求有关隐藏/显示 subview 时的最佳实践的信息。 </p>

<p>回想起来,我收集到您正在尝试更改内置于现有 iOS 控件中的 subview 。这让我觉得有点脆弱,高度依赖于控件的内部结构,Apple 可以自由地将其从一个 iOS 版本更改为另一个版本。就个人而言,我不会仅仅因为这个原因而倾向于追求这种技术。</p>

<p>关于 Apple 应用程序的审批流程,我不知道他们出于这个原因拒绝了应用程序,但如果他们这样做了也不会感到惊讶。您的概念与 <a href="https://developer.apple.com/appstore/resources/approval/guidelines.html" rel="noreferrer noopener nofollow">app review guidelines</a> 第 10 节中的任何特定点不冲突。 , 但也不完全符合第 10 节的精神。应用审查指南模棱两可,令人沮丧,并且可能会发生变化。你可能没问题,但不能保证。</p>

<hr/>

<p>关于隐藏/显示 subview 时的最佳实践的几点观察:</p>

<ol>
<li><p>在苹果的应用审核过程中,这种事情不太可能导致拒绝。 [如果您正在更改控件的内部 subview ,您可能没问题,但我猜这将取决于您在该过程中的积极程度。]</p></li>
<li><p>如果您发现自己总是隐藏/显示一堆 subview ,有时将它们放在容器 View 中,然后隐藏/显示容器会更容易。</p></li>
<li><p>我不鼓励您使用 <code>objectAtIndex:12</code> 之类的方法来选择特定的 subview 。设置 <a href="http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instp/UIView/tag" rel="noreferrer noopener nofollow"><code>tag</code></a> 更安全您的 subview 的属性,然后使用 <a href="http://developer.apple.com/library/ios/documentation/UIKit/Reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instm/UIView/viewWithTag%3a" rel="noreferrer noopener nofollow"><code>viewWithTag</code></a>当您想要选择一个时(例如隐藏/显示)。</p></li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 隐藏 iOS 标准控件的 subview 的风险,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15949551/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15949551/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 隐藏 iOS 标准控件的 subview 的风险