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

ios - Apple 会拒绝我使用此代码的申请吗?


                                            <p><p>我想知道如果我使用下面提供的代码,我的应用会被苹果拒绝吗?我有违反什么吗?代码在 AppDelegate.m 中</p>

<pre><code>- (UIStoryboard *)grabStoryboard {

UIStoryboard *storyboard;

// detect the height of our screen
int height = .bounds.size.height;

if (height == 480) {
    storyboard = ;
} else if (height == 568) {
    storyboard = ;
}else {
    storyboard = ;
}

return storyboard;
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我没有看到任何违反 Apple 条款的内容。但是,重要的是您知道 Apple 看不到代码。他们的条款所依据的是应用程序的性能和内容。您的应用可能会被拒绝,但据我所知,您对此没有什么可担心的。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Apple 会拒绝我使用此代码的申请吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30586675/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30586675/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Apple 会拒绝我使用此代码的申请吗?