ios6 - iOS app submission: The App is using a private API: _tableView -
we have submitted app app store , apple send review note
the app using private api: _tableview
i have tested in code. not sure apple asking change.
i used https://github.com/shiki/stableviewcontroller pull refresh. me please possible.
the process of determining whether app uses private apis not simple might expect.
it possible apple falsely identify app containing private api usage, when doesn't.
this can happen if write code has naming conflicts code in apple frameworks. i'm wondering if apple process isn't getting stuck on in stableviewcontroller.h
:
@property (nonatomic, retain) uitableview *tableview;
that's not best name (even though makes sense table view controller have tableview
property), because uitableviewcontroller has property same name.
you might try editing stableviewcontroller
source code yourself, , renaming property (e.g. stableview
, or more unique):
@property (nonatomic, retain) uitableview *stableview;
(and, of course, refactoring code change usage of property, too)
Comments
Post a Comment