ShareCodeView.swift 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // ShareCodeView.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/21.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ShareCodeView: UIView {
  10. @IBOutlet weak var imgView: UIImageView!
  11. @IBOutlet weak var btnSave: UIButton!
  12. func initView() {
  13. self.setSize(width: ScreenWidth - 40, height: ScreenWidth - 40 + 70)
  14. imgView.setSize(width: ScreenWidth - 100, height: ScreenWidth - 100)
  15. imgView.marginLeft(left: 30)
  16. btnSave.setCenterHorizontallyForSuperView()
  17. btnSave.marginTop(top: 20, view: imgView)
  18. btnSave.setCornerRadius(size: btnSave.height() / 2)
  19. }
  20. @IBAction func btnSaveClick(_ sender: Any) {
  21. if imgView.image != nil {
  22. UIImageWriteToSavedPhotosAlbum(imgView.image!, self, #selector(saveImageResult), nil)
  23. } else {
  24. SVProgressHUD.showSuccess(withStatus: "保存失败")
  25. }
  26. }
  27. @objc func saveImageResult(image: UIImage, didFinishSavingWithError error: NSError?, contentInfo: AnyObject) {
  28. if error != nil {
  29. SVProgressHUD.showSuccess(withStatus: "保存失败")
  30. } else {
  31. SVProgressHUD.showSuccess(withStatus: "保存成功")
  32. }
  33. }
  34. }