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.
我想知道是否有可能检查应用程序现在是否正在使用网络连接来做某事。
该应用程序具有正在上传数据的后台服务,用户也可以按下按钮下载数据。我不希望这个用户能够下载,直到后台进程完成。
框架是否提供了一些东西来检查连接是否被使用?
我建议BOOL在后台上传代码所在的方法中使用属性。
BOOL
然后在按钮的 sender 方法中,执行以下操作:
if (!upLoading) { // Your Downloading codes } else { // Show an alert here }