更新图片

This commit is contained in:
xaoxuu 2020-06-22 10:36:33 +08:00
parent 0818b97c16
commit 570d3969be
23 changed files with 39 additions and 35 deletions

Binary file not shown.

View File

@ -5,18 +5,18 @@
"scale" : "1x" "scale" : "1x"
}, },
{ {
"idiom" : "universal",
"filename" : "ProHUDBuy@2x.png", "filename" : "ProHUDBuy@2x.png",
"idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"idiom" : "universal",
"filename" : "ProHUDBuy@3x.png", "filename" : "ProHUDBuy@3x.png",
"idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }
], ],
"info" : { "info" : {
"version" : 1, "author" : "xcode",
"author" : "xcode" "version" : 1
} }
} }

View File

@ -5,19 +5,19 @@
"scale" : "1x" "scale" : "1x"
}, },
{ {
"idiom" : "universal",
"filename" : "cloud download (2).png", "filename" : "cloud download (2).png",
"idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"idiom" : "universal",
"filename" : "cloud download (3).png", "filename" : "cloud download (3).png",
"idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }
], ],
"info" : { "info" : {
"version" : 1, "author" : "xcode",
"author" : "xcode" "version" : 1
}, },
"properties" : { "properties" : {
"template-rendering-intent" : "template" "template-rendering-intent" : "template"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -5,12 +5,12 @@
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "prohud.candy@2x.png", "filename" : "prohud.rainbow.circle@2x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "prohud.candy@3x.png", "filename" : "prohud.rainbow.circle@3x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -15,13 +15,6 @@
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC"> <view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/> <rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="RLL-Jl-KUu">
<rect key="frame" x="168" y="377" width="78" height="22"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<state key="normal" title="Button" image="icloud.and.arrow.down" catalog="system"/>
</button>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/> <viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
</view> </view>
@ -50,7 +43,4 @@
<point key="canvasLocation" x="140.57971014492756" y="133.92857142857142"/> <point key="canvasLocation" x="140.57971014492756" y="133.92857142857142"/>
</scene> </scene>
</scenes> </scenes>
<resources>
<image name="icloud.and.arrow.down" catalog="system" width="128" height="112"/>
</resources>
</document> </document>

View File

@ -30,7 +30,8 @@ class TestToastVC: BaseListVC {
"测试较长的标题和内容", "测试较长的标题和内容",
"测试特别长的标题和内容", "测试特别长的标题和内容",
"测试只有title", "测试只有title",
"测试只有message"] "测试只有message",
"自定义旋转的图片"]
} }
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
@ -152,6 +153,19 @@ class TestToastVC: BaseListVC {
} }
} }
} else if row == 13 {
Toast.push(scene: .privacy, title: "正在授权", message: "请稍等片刻") { (t) in
t.identifier = "loading"
let imgv = UIImageView(image: UIImage(named: "prohud.rainbow.circle"))
t.imageView.addSubview(imgv)
imgv.snp.makeConstraints { (mk) in
mk.center.equalToSuperview()
mk.width.height.equalTo(18)
}
t.rotate(imgv.layer, speed: 4)
}
simulateSync()
} }
} }

View File

@ -116,7 +116,7 @@ public protocol RotateAnimation: HUDController {
public extension RotateAnimation { public extension RotateAnimation {
func rotate(_ layer: CALayer? = nil, direction: ProHUD.RotateDirection = .clockwise, speed: CFTimeInterval = 1) { func rotate(_ layer: CALayer? = nil, direction: ProHUD.RotateDirection = .clockwise, speed: CFTimeInterval = 2) {
DispatchQueue.main.async { DispatchQueue.main.async {
let l = layer ?? self.imageView.layer let l = layer ?? self.imageView.layer
self.animateLayer = l self.animateLayer = l

View File

@ -53,7 +53,7 @@ public extension ProHUD.Scene {
var scene = ProHUD.Scene.init(identifier: "loading") var scene = ProHUD.Scene.init(identifier: "loading")
scene.alertDuration = 0 scene.alertDuration = 0
scene.toastDuration = 0 scene.toastDuration = 0
scene.image = ProHUD.image(named: "prohud.candy") scene.image = ProHUD.image(named: "prohud.rainbow.circle")
return scene return scene
} }
static var success: ProHUD.Scene { static var success: ProHUD.Scene {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -5,12 +5,12 @@
"scale" : "1x" "scale" : "1x"
}, },
{ {
"filename" : "prohud.candy@2x.png", "filename" : "prohud.rainbow.circle@2x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"filename" : "prohud.candy@3x.png", "filename" : "prohud.rainbow.circle@3x.png",
"idiom" : "universal", "idiom" : "universal",
"scale" : "3x" "scale" : "3x"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB