gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:15:11 24 4
gpt4 key购买 nike

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

- (UIStoryboard *)grabStoryboard {

UIStoryboard *storyboard;

// detect the height of our screen
int height = [UIScreen mainScreen].bounds.size.height;

if (height == 480) {
storyboard = [UIStoryboard storyboardWithName:@"Main3.5" bundle:nil];
} else if (height == 568) {
storyboard = [UIStoryboard storyboardWithName:@"Main4.0" bundle:nil];
}else {
storyboard = [UIStoryboard storyboardWithName:@"Main7.0" bundle:nil];
}

return storyboard;
}

最佳答案

我没有看到任何违反 Apple 条款的内容。但是,重要的是您要知道 Apple 看不到代码。他们的条款基于应用程序的性能和内容。您的应用可能会被拒绝,但据我所知,您对此无需担心。

关于ios - Apple 会拒绝我使用此代码的申请吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30586675/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com