Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我将音乐应用程序上传到AppStore并收到以下警告消息时,我感到很惊讶。
AppStore
我使用以下代码更改了我的UITableView.
UITableView
[[self tableViewMain] setSectionIndexColor:[UIColor redColor]]; [[self tableViewMain] setSectionIndexBackgroundColor:[UIColor clearColor]];
那是什么,我该如何解决?
这意味着您使用了私有 API,而不是公共 API。如果您使用它,Apple 通常会拒绝您的应用程序,因为它们是不允许的,并且如果 Apple 更改内部系统(包括此未记录的代码),它可能会使您的应用程序崩溃。人们会留下负面评价。
请检查您使用的第三方私有 API 的更新,下载它的最新 SDK 并将其用于您现有的项目。希望您的问题解决。