我想知道如果我使用下面提供的代码,我的应用会被苹果拒绝吗?我有违反什么吗?代码在 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/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |