Skip to content

Commit

Permalink
update loadingImageURL
Browse files Browse the repository at this point in the history
  • Loading branch information
DamonHu committed Jul 21, 2021
1 parent f76e1d9 commit 621631f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HDHUD.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'HDHUD'
s.swift_version = '5.0'
s.version = '1.2.8'
s.version = '1.3.0'
s.license= { :type => "MIT", :file => "LICENSE" }
s.summary = 'A simple and efficient HUD based on swift development'
s.homepage = 'https://github.com/DamonHu/HDHUD'
Expand Down
2 changes: 1 addition & 1 deletion pod/Class/HDHUD.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ open class HDHUD {
#if canImport(Kingfisher)
//如果设置了`loadingImageURL`,加载图片将会优先使用URL资源
// If `loadingImageURL` is set, the URL resource will be used preferentially when loading images
public static var loadingImageURL = URL(fileURLWithPath: URLPathHDBoundle(named: "loading.gif")!)
public static var loadingImageURL: URL? = URL(fileURLWithPath: URLPathHDBoundle(named: "loading.gif") ?? "")
#endif
///color and text
public static var contentBackgroundColor = UIColor.zx.color(hexValue: 0x000000, alpha: 0.8)
Expand Down

0 comments on commit 621631f

Please sign in to comment.