我想知道我是否使用下面提供的代码,苹果可以拒绝我的应用程序吗?我违反了什么吗?代码在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没有看到该代码。他们基于其条款的是应用程序的性能和内容。您的应用程序可以被拒绝,但是据我所知,您不必为此担心。