UICollectionView实现了一下常见的新闻分类.  附有效果图

近期一直在深入学习swift,实现了CollectionView item的头东与删除,用的都是系统的一些函数方法,看起来比较直观.

第一步:

  1. class HotViewController: UIViewController,UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {
  2.  
  3. //声明两个存放字符串的数组
  4. var nowClassName = [String]()
  5. var surplusClassName = [String]()
  6.  
  7. //是否排序
  8. var isRank = Bool()
  9.  
  10. var collectionView : UICollectionView?
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13.  
  14. self.view.backgroundColor = ColorViewBG
  15.  
  16. let layout = UICollectionViewFlowLayout()
  17. layout.itemSize = CGSize(width:,height:)
  18. //列间距,行间距,偏移
  19. layout.minimumInteritemSpacing =
  20. layout.minimumLineSpacing =
  21. layout.sectionInset = UIEdgeInsetsMake(, , , )
  22.  
  23. collectionView = UICollectionView.init(frame: self.view.bounds, collectionViewLayout: layout)
  24. collectionView?.delegate = self
  25. collectionView?.dataSource = self;
  26. //注册一个cell
  27. collectionView!.register(HotCell.self, forCellWithReuseIdentifier:"HotCell")
  28. //注册区头
  29. collectionView?.register(UICollectionReusableView.self, forSupplementaryViewOfKind:UICollectionElementKindSectionHeader, withReuseIdentifier: "headView")
  30.  
  31. collectionView?.backgroundColor = ColorViewBG
  32. self.view.addSubview(collectionView!)
  33. let gesture = UILongPressGestureRecognizer(target: self, action: #selector(viewCustom(_ :)))
  34.  
  35. collectionView?.addGestureRecognizer(gesture)
  36.  
  37. saveData()
  38. }
  1. func viewCustom(_ longPress:UILongPressGestureRecognizer){
  2.  
  3. let point:CGPoint = longPress.location(in: longPress.view)
  4.  
  5. let indexPath = self.collectionView?.indexPathForItem(at: point)
  6.  
  7. switch longPress.state {
  8. case .began:
  9.  
  10. self.collectionView?.beginInteractiveMovementForItem(at: indexPath!)
  11. break
  12. case .changed:
  13. self.collectionView?.updateInteractiveMovementTargetPosition(point)
  14.  
  15. break
  16.  
  17. case .ended:
  18. self.collectionView?.endInteractiveMovement()
  19. break
  20.  
  21. default:
  22. self.collectionView?.cancelInteractiveMovement()
  23. break
  24. }
  25.  
  26. }
  1. //添加数据
  2. private func saveData() {
  3. nowClassName += ["A-1","A-2","A-3","A-4","A-5","A-6","A-7","A-8","A-9","A-10","A-11"]
  4. surplusClassName += ["B-1","B-2","B-3","B-4","B-5","B-6","B-7","B-8","B-9","B-10","B-11"]
  5.  
  6. }
  1. // MARK: 代理
  2. //每个区的item个数
  3. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  4.  
  5. if section == {
  6. return nowClassName.count
  7. }else {
  8.  
  9. if !isRank {
  10. return surplusClassName.count
  11. }else{
  12. return
  13. }
  14. }
  15.  
  16. }
  17.  
  18. //分区个数
  19. func numberOfSections(in collectionView: UICollectionView) -> Int {
  20.  
  21. if !isRank {
  22. return
  23. }
  24.  
  25. return
  26. }
  27.  
  28. //自定义cell
  29. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  30.  
  31. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "HotCell", for: indexPath) as! HotCell
  32. cell.backgroundColor = UIColor.red
  33. if indexPath.section == {
  34. cell.label.text = nowClassName[indexPath.item]
  35. cell.button.addTarget(self, action: #selector(removeItem(_ :)), for: .touchUpInside)
  36. cell.button.tag = indexPath.row
  37.  
  38. cell.button.isHidden = !isRank
  39.  
  40. }else{
  41. cell.label.text = surplusClassName[indexPath.item]
  42. cell.button.isHidden = true
  43.  
  44. }
  45. return cell
  46.  
  47. }
  48.  
  49. func removeItem(_ button:UIButton){
  50.  
  51. //执行在这里的时候,显示的是有个分区,否则崩溃,报不明错误!,研究过的可以告诉一下,不胜感激!!!
  52. self.collectionView?.performBatchUpdates({
  53. //数据变更
  54. let item = self.nowClassName[button.tag]
  55. self.nowClassName.remove(at: button.tag)
  56. self.surplusClassName.append(item)
  57.  
  58. let indexPath = IndexPath.init(item: button.tag, section: )
  59. print(indexPath)
  60.  
  61. let arr:[IndexPath] = [indexPath]
  62. self.collectionView?.deleteItems(at: arr)
  63.  
  64. }, completion: { (completion) in
  65.  
  66. self.collectionView?.reloadData()
  67. })
  68.  
  69. }
  70.  
  71. //是否可以移动
  72. func collectionView(_ collectionView: UICollectionView, canMoveItemAt indexPath: IndexPath) -> Bool {
  73.  
  74. if isRank {
  75. return true
  76. }
  77. return false
  78.  
  79. }
  80.  
  81. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  82. //获取当前 item
  83. //collectionView.cellForItem(at: indexPath)
  84. //获取所有的item
  85. //collectionView.indexPathsForVisibleItems
  86.  
  87. if !isRank && indexPath.section == {
  88. //先把数据更新好,因为移动后界面会自动刷新,否则会崩溃
  89. nowClassName.append(surplusClassName[indexPath.item])
  90. surplusClassName.remove(at: indexPath.item)
  91.  
  92. let indexPath1 = NSIndexPath.init(item: nowClassName.count-, section: )
  93. let indexPath2 = NSIndexPath.init(item: indexPath.item, section: )
  94.  
  95. //从当前位置移动到新的位置
  96. collectionView.moveItem(at: indexPath2 as IndexPath, to: indexPath1 as IndexPath)
  97. }
  98.  
  99. }
  100.  
  101. //设置拖动(手势拖动触发)
  102. func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
  103.  
  104. // if sourceIndexPath.section == 0 && destinationIndexPath.section == 0 {
  105. // collectionView.exchangeSubview(at: sourceIndexPath.item, withSubviewAt: destinationIndexPath.item)
  106. // }
  107.  
  108. }
  109.  
  110. //区头设置
  111. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  112.  
  113. //
  114. //区头
  115. var headerView : UICollectionReusableView?
  116.  
  117. if kind == UICollectionElementKindSectionHeader{
  118. headerView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "headView", for: indexPath)
  119.  
  120. //防止重用,这样很暴力
  121. for view in (headerView?.subviews)!{
  122. view.removeFromSuperview()
  123.  
  124. }
  125.  
  126. let label = UILabel.init(frame: CGRect(x:,y:,width:,height:))
  127. if indexPath.section == {
  128. label.text = "切换栏目"
  129.  
  130. let button = UIButton.init(type: .custom)
  131. button.frame = CGRect(x:collectionView.frame.size.width - ,y:,width:,height:)
  132. button.titleLabel?.textColor = UIColor.cyan
  133. button.backgroundColor = UIColor.white
  134.  
  135. let str = isRank ? "完成排序" : "排序删除"
  136. button.setTitle(str, for: .normal)
  137. button.setTitleColor(UIColor.red, for: .normal)
  138. headerView?.addSubview(button)
  139.  
  140. button.addTarget(self, action: #selector(click(_ :)), for: .touchUpInside)
  141.  
  142. }else if indexPath.section == {
  143. label.text = "点击添加更多栏目"
  144. }
  145. headerView?.addSubview(label)
  146.  
  147. }
  148.  
  149. return headerView!
  150.  
  151. }
  152.  
  153. func click(_ btn:UIButton){
  154.  
  155. let str = isRank ? "完成排序" : "排序删除"
  156. btn.setTitle(str, for: .normal)
  157.  
  158. isRank = !isRank
  159. print(isRank)
  160. self.collectionView?.reloadData()
  161. }
  162.  
  163. //设置HeaderView的宽高
  164. //MARK: UICollectionViewDelegateFlowLayout
  165. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
  166.  
  167. return CGSize(width:collectionView.frame.size.width,height:)
  168.  
  169. }

HotCell 类的实现

  1. class HotCell: UICollectionViewCell {
  2.  
  3. var label = UILabel()
  4. var button = UIButton()
  5.  
  6. override init(frame: CGRect) {
  7. super.init(frame: frame)
  8.  
  9. label = UILabel.init(frame: self.bounds)
  10. label.textAlignment = .center
  11. self.addSubview(label)
  12. button = UIButton.init(type: .custom)
  13. button.backgroundColor = UIColor.white
  14. button.frame = CGRect(x:frame.size.width - ,y:,width:,height:)
  15. self.addSubview(button)
  16.  
  17. }
  18.  
  19. required init?(coder aDecoder: NSCoder) {
  20. fatalError("init(coder:) has not been implemented")
  21. }
  22.  
  23. }

Swift3.0 UICollectionView 删除,拖动的更多相关文章

  1. Swift3.0 UICollectionView简单使用

    感觉swift各版本语法改动太大,储备着吧

  2. Swift3.0语言教程删除字符与处理字符编码

    Swift3.0语言教程删除字符与处理字符编码 Swift3.0语言教程删除字符 Swift3.0语言教程删除字符与处理字符编码,在字符串中,如果开发者有不需要使用的字符,就可以将这些字符删除.在NS ...

  3. UICollectionView在Swift3.0中的用法

    UICollectionView在Swift3.0中的用法 UICollectionView的初始化跟OC中是相似的,创建 GameView 集成自 UICollectionView .注意不同于UI ...

  4. iOS开发之资讯类App常用分类控件的封装与实现(CollectionView+Swift3.0+)

    今天博客中,我们就来实现一下一些常用资讯类App中常用的分类选择的控件的封装.本篇博客中没有使用到什么新的技术点,如果非得说用到了什么新的技术点的话,那么勉强的说,用到了一些iOS9以后UIColle ...

  5. Swift3.0服务端开发(一) 完整示例概述及Perfect环境搭建与配置(服务端+iOS端)

    本篇博客算是一个开头,接下来会持续更新使用Swift3.0开发服务端相关的博客.当然,我们使用目前使用Swift开发服务端较为成熟的框架Perfect来实现.Perfect框架是加拿大一个创业团队开发 ...

  6. Swift3.0语言教程使用路径字符串

    Swift3.0语言教程使用路径字符串 Swift3.0语言教程使用路径字符串,路径其实是字符串的一种,我们称为路径字符串.本小节将讲解如何使用路径字符串. 1.组合路径 开发者可以将数组快速的组合成 ...

  7. Swift3.0语言教程替换子字符串

    Swift3.0语言教程替换子字符串 Swift3.0语言教程替换子字符串,替换子字符串其实就是将字符串中的子字符串删除,然后再进行添加.为了让这一繁琐的过程变的简单,NSString提供了替换子字符 ...

  8. swift3.0 coredata 的使用

    //swift3.0在语法上有很大的改变,以简单的增删改查为例,如下: //User类如下: import Foundation import CoreData extension User { @n ...

  9. Swift3.0相对于2.3语法的一些变化

    前言 : Swift3.0的Swift的第3个主要版本,目标是安全,快速和有表现力,也是第一个有开源社区参与开发的Swift版本.由于语法和API改动比较多,Xcode 8.0 Beta提供了migr ...

随机推荐

  1. libxml/HTMLparser.h file not found

    在导入asihttprequest包时出问题导入了libxml2.dylib.可是却提示libxml/HTMLparser.h file not found. 这是由于你的开发环境默认的路径无法找到这 ...

  2. PJzhang:python基础入门的7个疗程-two

    猫宁!!! 参考链接:易灵微课-21天轻松掌握零基础python入门必修课-售价29元人民币 https://www.liaoxuefeng.com/wiki/1016959663602400 htt ...

  3. C语言-计数排序

    计数排序的基本思想是:统计一个数序列中小于某个元素a的个数为n,则直接把该元素a放到第n+1个位置上.当然当过有几个元素相同时要做适当的调整,因为不能把所有的元素放到同一个位置上.计数排序假设输入的元 ...

  4. windows核心编程之进程间共享数据

    有时候我们会遇到window进程间共享数据的需求,例如说我想知道系统当前有多少某个进程的实例. 我们能够在程序中定义一个全局变量.初始化为0.每当程序启动后就加1.当然我们我们能够借助第三方介质来储存 ...

  5. Intel Naming Strategy--2

    http://en.wikipedia.org/wiki/Intel_Corporation#Naming_strategy Naming strategy[edit] In 2006, Intel ...

  6. C++类中使用new及delete小例子(续)

    在该示例中我们显式定义了复制构造函数来代替默认复制构造函数, 在该复制构造函数的函数体内, 不是再直接将源对象所申请空间的地址赋值给被初始化的对象, 而是自己独立申请一处内存后再将源对象的属性复制过来 ...

  7. F08标准中Open命令的newunit选项

    从gfortran 4.5开始Open命令开始支持newunit选项,示例如下: integer :: u open(newunit=u, file="log.txt", posi ...

  8. CodeChef - PRIMEDST Prime Distance On Tree 树分治 + FFT

    Prime Distance On Tree Problem description. You are given a tree. If we select 2 distinct nodes unif ...

  9. TypeError: 'module' object is not callable 原因分析

    程序代码 class Person: #constructor def __init__(self,name,sex): self.Name = name self.Sex = sex def ToS ...

  10. [git] csdn之code平台的使用

    简单的说一下GIT的使用.... 代码和托管平台是csdn刚出来没多久的code.csdn.net [中文的界面什么的简单点,好理解,嗯,易用....] Git 使用最新版:Git-1.8.4-pre ...