Demo_SDPhoto.swift 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // Demo_SDPhoto.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2016/12/19.
  6. // Copyright © 2016年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class Demo_SDPhoto: NSObject {
  10. // @IBAction func centerBtnAction(sender: UIButton) {
  11. // let sd = SDPhotoBrowser()
  12. // sd.tag = sender.tag;
  13. // viewTopImage = sender.superview!
  14. // arrImagePaths.removeAll()
  15. // let imgs = (arrData[viewTopImage.tag] as! NSDictionary)["imgs"] as? NSArray
  16. // for img in imgs!
  17. // {
  18. // arrImagePaths.append((img as! NSDictionary)["imgPath"] as! String)
  19. // }
  20. //
  21. // sd.sourceImagesContainerView = viewTopImage;
  22. // sd.imageCount = arrImagePaths.count
  23. // sd.currentImageIndex = Int32(sender.tag)
  24. // sd.delegate = self;
  25. // sd.show()
  26. // }
  27. //
  28. // var viewTopImage = UIView()
  29. // var arrImagePaths = [String]()
  30. // MARK: 图片
  31. // func photoBrowser(_ browser: SDPhotoBrowser!, placeholderImageFor index: Int) -> UIImage!
  32. // {
  33. //
  34. // return (viewTopImage.subviews[index] as! UIButton).currentImage!
  35. // }
  36. // func photoBrowser(_ browser: SDPhotoBrowser!, highQualityImageURLFor index: Int) -> URL! {
  37. // print(RequestURL.hostAdminMain + arrImagePaths[index]);
  38. // return URL(string: arrImagePaths[index])
  39. //
  40. // }
  41. }