AddImagesViewController.swift 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // AddDPXXViewController.swift
  3. // am
  4. // 需要配置 加载已有图片 上传图片 保存图片功能
  5. // Created by Virgil on 2016/11/14.
  6. // Copyright © 2016年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class AddImagesViewController: BaseViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
  10. var imgCount: Int = 0
  11. //var imgArray = NSMutableArray()
  12. var imgAddress = NSMutableArray()
  13. @IBOutlet weak var btnSave: UIButton!
  14. @IBOutlet weak var btnImage: UIButton!
  15. @IBOutlet weak var scrollView: UIScrollView!
  16. var shopOpen: ShopOpenEntity!
  17. /// 0:店铺照片 1:商户合影照
  18. var type = 0
  19. var viewTemp: Virgil_SelectedImageView!
  20. override func viewDidLoad() {
  21. super.viewDidLoad()
  22. initNavLeftBackButton()
  23. if type == 0 {
  24. self.title = "上传店铺照片"
  25. } else {
  26. self.title = "上传商户合影照"
  27. }
  28. }
  29. func initView() {
  30. viewTemp = Bundle.main.loadNibNamed("Virgil_SelectedImageView", owner: self, options: nil)?.last as? UIView as! Virgil_SelectedImageView
  31. viewTemp.frame = CGRect(x: 20, y: 35, width: self.view.frame.width - 40, height: 70)
  32. var images = ""
  33. if type == 0 {
  34. images = shopOpen.dpImages
  35. } else {
  36. images = shopOpen.shhyzImages
  37. }
  38. if images != "" {
  39. viewTemp.initView(maxCount: 9, arrDefaultImageUrs: images.split(s: ","), vc: self)
  40. } else {
  41. viewTemp.initView(maxCount: 9, arrDefaultImageUrs: nil, vc: self)
  42. }
  43. self.view.addSubview(viewTemp)
  44. }
  45. @IBAction func btnAddImageClick(_ sender: Any) {
  46. }
  47. @IBAction func btnSaveClick(_ sender: Any) {
  48. if viewTemp.arrImageUrls.count < 1 {
  49. SVProgressHUD.showError(withStatus: "请先上传照片")
  50. return
  51. }
  52. if type == 0 {
  53. shopOpen.dpImages = viewTemp.arrImageUrls.joined(separator: ",")
  54. } else {
  55. shopOpen.shhyzImages = viewTemp.arrImageUrls.joined(separator: ",")
  56. }
  57. handleBack()
  58. }
  59. override func didReceiveMemoryWarning() {
  60. super.didReceiveMemoryWarning()
  61. // Dispose of any resources that can be recreated.
  62. }
  63. override func viewWillAppear(_ animated: Bool) {
  64. super.viewWillAppear(animated)
  65. setNavBackgroud(isWhite: true)
  66. appDelegate.setNavigationBarHidden(isHidden: false)
  67. }
  68. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  69. super.init(nibName: "AddImagesViewController", bundle: nil)
  70. }
  71. required init?(coder aDecoder: NSCoder) {
  72. fatalError("init(coder:) has not been implemented")
  73. }
  74. /*
  75. // MARK: - Navigation
  76. // In a storyboard-based application, you will often want to do a little preparation before navigation
  77. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  78. // Get the new view controller using segue.destinationViewController.
  79. // Pass the selected object to the new view controller.
  80. }
  81. */
  82. }