这是我的情况:我正在发出同步 HTTP 请求来收集数据,但在此之前我想在导航栏标题视图中放置一个加载视图。请求结束后,我想将 titleView 返回为零。
[self showLoading]; //Create loading view and place in the titleView of the nav bar.
[self makeHTTPconnection]; //Creates the synchronous request
[self endLoading]; //returns the nav bar titleView back to nil.
我知道加载视图有效,因为在请求结束后会显示加载视图。
我的问题:此时应该很明显,但基本上我想延迟该
[self makeHTTPconnection]
功能直到[self showLoading]
完成。
谢谢你的时间。