gpt4 book ai didi

iOS 应用提交 : The App is using a private API: _tableView

转载 作者:行者123 更新时间:2023-11-29 13:06:50 25 4
gpt4 key购买 nike

我们已经向应用商店提交了一个应用,Apple 向我们发送了一份评论说明

The App is using a private API: _tableView

我已经在我的代码中进行了测试。我不确定 Apple 到底要求我们改变什么。

我刚刚使用了 https://github.com/shiki/STableViewController用于拉动刷新。请尽快帮助我。

最佳答案

确定whether your app uses Private APIs的过程可能并不像您想象的那么简单。

苹果有可能falsely identify your app as containing Private API usage, even when it doesn't .

如果您编写的代码与 Apple 框架中的代码有命名冲突,就会发生这种情况。我想知道 Apple 进程是否没有在 STableViewController.h 中卡住:

@property (nonatomic, retain) UITableView *tableView;

这可能不是最好的名字(尽管 table view controllertableView 属性是有道理的),因为 UITableViewController has a property with the same name .

您可以尝试自己简单地编辑 STableViewController 源代码,并重命名该属性(例如sTableView,或更独特的名称):

@property (nonatomic, retain) UITableView *sTableView;

(当然,重构代码以更改该属性的所有用法)

关于iOS 应用提交 : The App is using a private API: _tableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18439136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com