我想知道如果我使用下面提供的代码,苹果可以拒绝我的应用吗?我违反了什么?代码在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;
}
答案 0 :(得分:1)
我没有看到任何违反Apple条款的内容。但是,重要的是要知道Apple没有看到代码。他们的术语基础是App的表现和内容。您的应用程序可能会被拒绝,但从我看到的内容中您无需担心。