-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathViewController.swift
42 lines (33 loc) · 1.2 KB
/
ViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// ViewController.swift
// ProfileClusterDemo
//
// Created by Chandan Karmakar on 20/07/21.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var trailingConstraint: NSLayoutConstraint!
@IBOutlet weak var profileCluster: ProfileClusterView!
lazy var gesture = UIPanGestureRecognizer(target: self, action: #selector(handleGesture(gesture:)))
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
profileCluster.configureCount = { 20 }
profileCluster.configureImageView = { view in
view.imageView.backgroundColor = view.index % 2 == 0 ? UIColor.darkGray : .lightGray
}
profileCluster.configureMoreView = { view in
view.label.backgroundColor = UIColor.gray
}
profileCluster.reloadData()
view.addGestureRecognizer(gesture)
}
@objc func handleGesture(gesture: UIPanGestureRecognizer) {
switch gesture.state {
case .began, .changed:
trailingConstraint.constant -= (gesture.translation(in: view).x * 0.04)
@unknown default:
break
}
}
}