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.
我有一个关于如何拦截PFQueryTableViewController. 基本上,我想重写一个方法,PFQueryTableViewController以便在执行查询时显示自定义错误警报。有谁知道我将如何执行这种行为。
PFQueryTableViewController
在 iOS 上,这是覆盖的方法:
- (void)objectsDidLoad:(nullable NSError *)error;
在您的实施中,您可以检查是否存在错误并根据需要进行响应。
注意:如果你覆盖它,你应该 [super objectsDidLoad:]。
来源:解析文档