MainNavigationController.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. //
  2. // MainNavigationController.swift
  3. // GoTogether
  4. //
  5. // Created by virgil on 16/3/31.
  6. // Copyright © 2016年 virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MainNavigationController: UINavigationController, UIScrollViewDelegate {
  10. var scr: UIScrollView!
  11. var arr: NSArray!
  12. var imgArray: NSMutableArray!
  13. var pageControl: UIPageControl!
  14. var intoButton: UIButton!
  15. var isOut: Bool = false
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. //self.makeLaunchView()
  19. if UserDefault.object(forKey: launchView) == nil {
  20. self.makeLaunchView()
  21. }
  22. // Do any additional setup after loading the view.
  23. }
  24. // MARK: ========公用透明背景View========
  25. var backgroudView: UIView!
  26. func showBackgroudView(viewContent: UIView?, isCenter: Bool, clickOtherIsClose: Bool) {
  27. if backgroudView == nil {
  28. backgroudView = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  29. self.view.addSubview(backgroudView)
  30. }
  31. backgroudView.isHidden = false
  32. backgroudView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x000000, alpha: 0.5)
  33. backgroudView.alpha = 0
  34. if clickOtherIsClose {
  35. let btn = UIButton(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  36. btn.addTarget(self, action: #selector(hiddenBackgroudView), for: .touchUpInside)
  37. backgroudView.addSubview(btn)
  38. }
  39. UIView.animate(withDuration: 0.3, animations: {
  40. self.backgroudView.alpha = 1
  41. }) { (_) in
  42. }
  43. if viewContent != nil {
  44. if isCenter {
  45. viewContent!.marginTop(top: (ScreenHeight - viewContent!.frame.height)/2)
  46. viewContent!.marginLeft(left: (ScreenWidth - viewContent!.frame.width)/2)
  47. }
  48. backgroudView.addSubview(viewContent!)
  49. }
  50. }
  51. func showBackgroudView(viewContent: UIView?, isCenter: Bool) {
  52. showBackgroudView(viewContent: viewContent, isCenter: isCenter, clickOtherIsClose: true)
  53. }
  54. func showBackgroudViewFromBottom(viewContent: UIView?) {
  55. showBackgroudViewFromBottom(viewContent: viewContent, clickOtherIsClose: true)
  56. }
  57. func showBackgroudViewFromBottom(viewContent: UIView?, clickOtherIsClose: Bool) {
  58. if backgroudView == nil {
  59. backgroudView = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  60. self.view.addSubview(backgroudView)
  61. }
  62. backgroudView.isHidden = false
  63. backgroudView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x000000, alpha: 0.7)
  64. backgroudView.alpha = 0
  65. if clickOtherIsClose {
  66. let btn = UIButton(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: ScreenHeight))
  67. btn.addTarget(self, action: #selector(hiddenBackgroudView), for: .touchUpInside)
  68. backgroudView.addSubview(btn)
  69. }
  70. UIView.animate(withDuration: 0.3) {
  71. self.backgroudView.alpha = 1
  72. }
  73. if viewContent != nil {
  74. viewContent!.marginTop(top: ScreenHeight)
  75. viewContent!.marginLeft(left: (ScreenWidth - viewContent!.frame.width)/2)
  76. backgroudView.addSubview(viewContent!)
  77. UIView.animate(withDuration: 0.2, animations: {
  78. viewContent!.marginTop(top: ScreenHeight - viewContent!.height())
  79. }) { (_) in
  80. }
  81. }
  82. }
  83. @objc func hiddenBackgroudView( ) {
  84. if self.backgroudView != nil {
  85. self.backgroudView.removeAll()
  86. UIView.animate(withDuration: 0.3, animations: {
  87. self.backgroudView.alpha = 0
  88. }) { (_) in
  89. self.backgroudView.isHidden = true
  90. }
  91. }
  92. }
  93. func hiddenBackgroudViewNoAnimate() {
  94. if self.backgroudView != nil {
  95. self.backgroudView.removeAll()
  96. self.backgroudView.alpha = 0
  97. self.backgroudView.isHidden = true
  98. }
  99. }
  100. // MARK: ========引导页========
  101. func makeLaunchView() {
  102. let textAr1 = NSArray(objects: "不用跑遍", "不用一件件试穿", "不用遗憾的感概", "现在")
  103. let textAr2 = NSArray(objects: "各大商场搜罗中意款式", "寻找适合自己的版型", "“要是领口有我的签名绣花就好了”", "加入普兰尼奥,享受你的专属定制")
  104. //
  105. //let tap = UITapGestureRecognizer(target: self, action: "tap")
  106. //主scrollView
  107. if CommonUntils.isIphonex() {
  108. arr = NSArray(objects: "y_01_x.png", "y_02_x.png", "y_03_x.png", "y_04_x.png") //,"640_4.png"
  109. } else {
  110. arr = NSArray(objects: "y_01.png", "y_02.png", "y_03.png", "y_04.png") //,"960_4.png"
  111. }
  112. scr = UIScrollView(frame: self.view.frame)
  113. scr.contentSize = CGSize(width: self.view.frame.width * CGFloat(arr.count), height: self.view.frame.height)
  114. scr.isPagingEnabled = true
  115. scr.delegate = self
  116. scr.alpha = 1
  117. scr.bounces = false
  118. scr.showsHorizontalScrollIndicator = false
  119. scr.showsVerticalScrollIndicator = false
  120. scr.layer.zPosition = 100000
  121. //scr.addGestureRecognizer(tap)
  122. self.view.addSubview(scr)
  123. //小圆点
  124. if ScreenHeight <= 480 {
  125. pageControl = UIPageControl(frame: CGRect(x: 0, y: ScreenHeight - 40, width: 320, height: 36))
  126. } else if ScreenHeight <= 568 {
  127. pageControl = UIPageControl(frame: CGRect(x: 0, y: ScreenHeight - 60, width: 320, height: 36))
  128. } else if ScreenHeight == 667 {
  129. pageControl = UIPageControl(frame: CGRect(x: 0, y: ScreenHeight - 60, width: 320, height: 36))
  130. } else if ScreenHeight >= 736 {
  131. pageControl = UIPageControl(frame: CGRect(x: 0, y: ScreenHeight - 70, width: 320, height: 36))
  132. } else {
  133. pageControl = UIPageControl(frame: CGRect(x: 0, y: ScreenHeight - 80, width: 320, height: 36))
  134. }
  135. pageControl.isHidden = false
  136. pageControl.numberOfPages = arr.count
  137. pageControl.currentPage = 0
  138. pageControl.currentPageIndicatorTintColor = UIColor.white
  139. pageControl.pageIndicatorTintColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x37a6ff)//CommonUntils.getUIColorFromRGB(rgbValue: 0x9e9e9e)
  140. self.view.addSubview(pageControl)
  141. pageControl.layer.zPosition = 100001
  142. pageControl.setCenterHorizontallyForSuperView()
  143. //立即进入的btn
  144. intoButton = UIButton(type: .custom)
  145. //intoButton.backgroundColor = UIColor.red
  146. print(ScreenHeight)
  147. intoButton.frame = CGRect(x: (ScreenWidth - 160)/2, y: ScreenHeight - 140, width: 160, height: 45)
  148. intoButton.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x37a6ff, alpha: 1.0)
  149. intoButton.setTitle("开启星创客", for: .normal)
  150. intoButton.setCornerRadius(size: 22)
  151. intoButton.setTitleColor(UIColor.white, for: .normal)
  152. intoButton.setFontSize(fontSize: 18)
  153. intoButton.addTarget(self, action: #selector(MainNavigationController.tap), for: UIControl.Event.touchUpInside)
  154. intoButton.isHidden = true
  155. intoButton.layer.zPosition = 1000002
  156. self.view.addSubview(intoButton)
  157. if !CommonUntils.isIphonex() {
  158. intoButton.marginBottom(bottom: 8, view: pageControl)
  159. }
  160. intoButton.setCenterHorizontallyForSuperView()
  161. //加载图片文字其他
  162. for i in 0 ..< arr.count {
  163. let imageView = UIImageView(frame: CGRect(x: self.view.frame.width * CGFloat(i), y: 0, width: self.view.frame.width, height: self.view.frame.height))
  164. imageView.image = UIImage(named: "\(arr[i])")
  165. scr.addSubview(imageView)
  166. let topLabel: UILabel!
  167. let bottomLabel: UILabel!
  168. if ScreenHeight <= 480 {
  169. topLabel = UILabel(frame: CGRect(x: self.view.frame.width * CGFloat(i), y: 360, width: 320, height: 50))
  170. bottomLabel = UILabel(frame: CGRect(x: self.view.frame.width * CGFloat(i), y: 400, width: 320, height: 20))
  171. } else {
  172. topLabel = UILabel(frame: CGRect(x: self.view.frame.width * CGFloat(i), y: 410, width: 320, height: 50))
  173. bottomLabel = UILabel(frame: CGRect(x: self.view.frame.width * CGFloat(i), y: 460, width: 320, height: 20))
  174. }
  175. //topTextField.backgroundColor = UIColor.redColor()
  176. topLabel.textAlignment = NSTextAlignment.center
  177. topLabel.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xffffff, alpha: 0.8)
  178. topLabel.font = UIFont.systemFont(ofSize: 18)
  179. topLabel.text = textAr1[i] as? String
  180. // scr.addSubview(topLabel)
  181. //bottomTextField.backgroundColor = UIColor.redColor()
  182. bottomLabel.textAlignment = NSTextAlignment.center
  183. bottomLabel.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xffffff, alpha: 0.8)
  184. bottomLabel.font = UIFont.systemFont(ofSize: 18)
  185. bottomLabel.text = textAr2[i] as? String
  186. //scr.addSubview(bottomLabel)
  187. }
  188. }
  189. //scrollView代理
  190. func scrollViewDidScroll(_ scrollView: UIScrollView) {
  191. //判断引导页是否是最后一页
  192. if scrollView.contentOffset.x >= 3 * self.view.frame.width {
  193. isOut = true
  194. //隐藏btn 显示小圆点
  195. UIView.animate(withDuration: 0.6, animations: { () -> Void in
  196. self.intoButton.isHidden = false
  197. })
  198. } else {
  199. isOut = false
  200. UIView.animate(withDuration: 0.6, animations: { () -> Void in
  201. self.intoButton.isHidden = true
  202. })
  203. }
  204. }
  205. func scrollViewDidEndDecelerating(_ scrollView: UIScrollView) {
  206. //计算当前第几页
  207. let pageWidth = scrollView.frame.size.width
  208. let page = floor((scrollView.contentOffset.x - pageWidth/2)/pageWidth) + 1
  209. self.pageControl.currentPage = NSInteger(page)
  210. }
  211. //scrollView添加单击事件
  212. @objc func tap() {
  213. if isOut {
  214. UIView.animate(withDuration: 0.6, animations: { () -> Void in
  215. self.scr.alpha = 0
  216. self.intoButton.isHidden = true
  217. // dispatch_async(dispatch_get_main_queue(), { () -> Void in
  218. // self.navigationController?.navigationBarHidden = false
  219. // })
  220. self.navigationController?.isNavigationBarHidden = false
  221. }, completion: { (_) -> Void in
  222. self.scr.removeFromSuperview()
  223. self.intoButton.removeFromSuperview()
  224. self.pageControl.removeFromSuperview()
  225. UserDefault.set("lunch", forKey: launchView)
  226. })
  227. }
  228. }
  229. ///是否允许横屏 控制所有页面,模态窗口需要重写本方法
  230. var isShouldAutorotate = false
  231. override var shouldAutorotate: Bool {
  232. return isShouldAutorotate
  233. }
  234. override var supportedInterfaceOrientations: UIInterfaceOrientationMask {
  235. if isShouldAutorotate {
  236. return [UIInterfaceOrientationMask.portrait, UIInterfaceOrientationMask.landscapeLeft, UIInterfaceOrientationMask.landscapeRight]
  237. } else {
  238. return [UIInterfaceOrientationMask.portrait]
  239. }
  240. }
  241. override func didReceiveMemoryWarning() {
  242. super.didReceiveMemoryWarning()
  243. // Dispose of any resources that can be recreated.
  244. }
  245. /*
  246. // MARK: - Navigation
  247. // In a storyboard-based application, you will often want to do a little preparation before navigation
  248. override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
  249. // Get the new view controller using segue.destinationViewController.
  250. // Pass the selected object to the new view controller.
  251. }
  252. */
  253. }