有没有人想出如何在TTPhotoViewController中重新加载数据?
我做了几次尝试,但从未找到合适的解决方案。
非常感谢您的帮助。
维拉德
答案 0 :(得分:1)
TTPhotoViewController最终来自TTModelViewController,因此您应该能够调用reload
方法。来自TTModelViewController.h:
/**
* Reloads data from the model.
*/
- (void)reload;
/**
* Reloads data from the model if it has become out of date.
*/
- (void)reloadIfNeeded;
/**
* Refreshes the model state and loads new data if necessary.
*/
- (void)refresh;