diff --git a/JHudViewDemo.xcodeproj/project.xcworkspace/xcuserdata/jinxiansen.xcuserdatad/UserInterfaceState.xcuserstate b/JHudViewDemo.xcodeproj/project.xcworkspace/xcuserdata/jinxiansen.xcuserdatad/UserInterfaceState.xcuserstate index fd0ad4a..dd2ee60 100644 Binary files a/JHudViewDemo.xcodeproj/project.xcworkspace/xcuserdata/jinxiansen.xcuserdatad/UserInterfaceState.xcuserstate and b/JHudViewDemo.xcodeproj/project.xcworkspace/xcuserdata/jinxiansen.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/README.md b/README.md index bb5ba5b..0021604 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ ![Language](https://img.shields.io/badge/Language-%20Objective%20C%20-blue.svg) [![Weibo](https://img.shields.io/badge/Sina微博-@晋先森-yellow.svg?style=flat)](http://weibo.com/3205872327) [![GitHub stars](https://img.shields.io/github/stars/jinxiansen/JHUD.svg)](https://github.com/jinxiansen/JHUD/stargazers) +[![Download](https://img.shields.io/cocoapods/dt/JHUD.svg)] #### `JHUD` is a full screen of the HUD when loading the data (Objective-C) . @@ -72,7 +73,7 @@ Class method : ``` [JHUD showAtView:self.view message:@"Hello, this is a message"]; -[JHUD hide]; +[JHUD hideForView:self.view]; ``` For more examples, including how to use JHUD , take a look at the bundled demo project. API documentation is provided in the header file (JHUD.h). diff --git a/README.zh.md b/README.zh.md index 355d155..8f42397 100755 --- a/README.zh.md +++ b/README.zh.md @@ -37,7 +37,7 @@ hudView.messageLabel.text = @"hello ,this is a circle animation"; ``` [JHUD showAtView:self.view message:@"Hello, this is a message"]; -[JHUD hide]; +[JHUD hideForView:self.view]; ```