开发者

Custom UINavigationController [closed]

It's difficult to tell what is being开发者_Go百科 asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

I'm beginner in IOS I'm try create custom animation for UINavigationController Tell me please Apple reject this code or not????

CATransition *transition = [CATransition animation];
transition.duration = 0.5;
transition.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
transition.type = kCATransitionReveal;
transition.subtype = kCATransitionFromBottom;
transition.delegate = self;
[self.navigationController.view.layer addAnimation:transition forKey:nil];
self.navigationController.navigationBarHidden = NO;
[self.navigationController pushViewController:myViewcontroller animated:NO];

Thanks!


like Mike said in his comment: please ask apple and/or take a look at the iOS App-Store-Review-Guidlines (if you dont have a developer-account: google for app store review guidlines )


If you are not using any private framework, you are not inheriting the control that apple does not allow to inherit (go to documentation of control you want to customize) you can certainly go and change it. Now here comes the user experience, apple put a lot of efforts in making the user experience uniform so as far as you are not competing with apple they will be happy to approve your application. I have seen my initial application got rejected many a time in initial days but now a days they do not put so many specs to dig into the code or other (my belief from the approval speed). In case of navigation controller I believe you can go and customize it as par your need.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜