afn和mbhud隐藏问题
This commit is contained in:
2
Pods/MBProgressHUD/MBProgressHUD.h
generated
2
Pods/MBProgressHUD/MBProgressHUD.h
generated
@@ -6,7 +6,7 @@
|
||||
|
||||
// This code is distributed under the terms and conditions of the MIT license.
|
||||
|
||||
// Copyright © 2009-2016 Matej Bukovinski
|
||||
// Copyright © 2009-2020 Matej Bukovinski
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
14
Pods/MBProgressHUD/PrivacyInfo.xcprivacy
generated
Normal file
14
Pods/MBProgressHUD/PrivacyInfo.xcprivacy
generated
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>NSPrivacyTracking</key>
|
||||
<false/>
|
||||
<key>NSPrivacyCollectedDataTypes</key>
|
||||
<array/>
|
||||
<key>NSPrivacyTrackingDomains</key>
|
||||
<array/>
|
||||
<key>NSPrivacyAccessedAPITypes</key>
|
||||
<array/>
|
||||
</dict>
|
||||
</plist>
|
||||
8
Pods/MBProgressHUD/README.mdown
generated
8
Pods/MBProgressHUD/README.mdown
generated
@@ -13,8 +13,6 @@
|
||||
[](https://raw.githubusercontent.com/wiki/matej/MBProgressHUD/Screenshots/6.png)
|
||||
[](https://raw.githubusercontent.com/wiki/matej/MBProgressHUD/Screenshots/7.png)
|
||||
|
||||
**NOTE:** The class has recently undergone a major rewrite. The old version is available in the [legacy](https://github.com/jdg/MBProgressHUD/tree/legacy) branch, should you need it.
|
||||
|
||||
## Requirements
|
||||
|
||||
`MBProgressHUD` works on iOS 9.0+. It depends on the following Apple frameworks, which should already be included with most Xcode templates:
|
||||
@@ -111,7 +109,7 @@ NSProgress *progress = [self doSomethingInBackgroundCompletion:^{
|
||||
hud.progressObject = progress;
|
||||
```
|
||||
|
||||
Keep in mind that UI updates, inclining calls to MBProgressHUD should always be done on the main thread.
|
||||
Keep in mind that UI updates, including calls to MBProgressHUD should always be done on the main thread.
|
||||
|
||||
If you need to run your long-running task in the main thread, you should perform it with a slight delay, so UIKit will have enough time to update the UI (i.e., draw the HUD) before you block the main thread with your task.
|
||||
|
||||
@@ -136,3 +134,7 @@ This code is distributed under the terms and conditions of the [MIT license](LIC
|
||||
## Change-log
|
||||
|
||||
A brief summary of each MBProgressHUD release can be found in the [CHANGELOG](CHANGELOG.mdown).
|
||||
|
||||
## Privacy
|
||||
|
||||
MBProgressHUD does not collect any data. See [SDK Privacy Practices](https://bukovinski.com/sdk-privacy/mbprogresshud/) for more information.
|
||||
|
||||
Reference in New Issue
Block a user