Apple submission app approves when we add UIView inside non-documented UIViews?
I mean,
// search for non-documented subview...
UIView *nv = ... //non-documented view;
[nv addSubview:myNormalView];
Is that ok to Apple?
Thanks.
Hami
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by non documented you mean views or UI elements that are part of the SDK but are not documented in apples public api (such as UIGlassButton) then no, its not ok with apple and if they find you are using them they will most likely reject your app. However if you just mean a subclass of UIView created by yourself or someone else, then its ok.