- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在表格 View 上实现平移手势,以在平移多个单元格时选择它们
我遇到的问题是当用户平移表中最后一个可见单元格时让表格 View 滚动到下一个单元格,或者当用户平移第一个可见单元格时滚动到上一个单元格
目前,当我的平移到达表中最后一个可见行或第一个可见行时,它会为下一行设置动画,但仅限于前 2 或 3 行,然后停止滚动
经过一番挖掘,似乎是由于用户手指固定在 table 边缘而未调用 panGesture。
一旦平底锅到达表格的顶部或底部边缘,我将如何保持表格滚动?
这是我当前的代码:
import UIKit
class MyView: UIViewController, UITableViewDelegate, UITableViewDataSource, UIGestureRecognizerDelegate {
var lastSelectedCell = IndexPath()
var gesturePan: UIPanGestureRecognizer!
var totalRows = 100
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
//setup table gestures
addGesturesToTable()
}
}
extension MyView{
//MARK: - Tableview code
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return totalRows
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
let lab = cell.viewWithTag(1) as! UILabel
lab.text = "\(indexPath.row)"
return cell
}
}
extension MyView{
//MARK: - Gesture code
func addGesturesToTable() {
tableView.canCancelContentTouches = false
tableView.allowsMultipleSelection = true
//add long press gesture to initiate pan
let gestureLongPress = UILongPressGestureRecognizer(target: self, action: #selector(enablePan))
gestureLongPress.minimumPressDuration = 0.25
gestureLongPress.delaysTouchesBegan = true
gestureLongPress.delegate = self
tableView.addGestureRecognizer(gestureLongPress)
//add pan gesture to select cells on drag
gesturePan = UIPanGestureRecognizer(target: self, action: #selector(userPanned(_:)))
gesturePan.isEnabled = false
gesturePan.delegate = self
tableView.addGestureRecognizer(gesturePan)
}
//LongPress gesture(to enable pan)
@objc func enablePan() {
gesturePan.isEnabled = true
}
//Pan gesture
@objc func userPanned(_ panGesture: UIPanGestureRecognizer) {
//if starting to pan
if panGesture.state == .began {
tableView?.isUserInteractionEnabled = false
tableView?.isScrollEnabled = false
//if pan position is changed
}else if panGesture.state == .changed {
//get indexPath at pan location
let location: CGPoint = panGesture.location(in: tableView)
if let indexPath: IndexPath = tableView?.indexPathForRow(at: location) {
//if the index path.row is the first or last row of the data set
if(indexPath.row >= totalRows - 1 || indexPath.row <= 0){
print("data start/end reached")
//otherwise
}else{
//get pan direction
var direction: String!
let velocity = panGesture.velocity(in: tableView)
if(velocity.y > 0){
direction = "Down"
}else{
direction = "Up"
}
//if it's a new cell
if indexPath != lastSelectedCell {
//select/deselect it
self.selectPannedCell(indexPath, selected: true, location: location, panDirection: direction)
//update last selected cell
lastSelectedCell = indexPath
}
}
}
//if pan gesture is ending
}else if panGesture.state == .ended {
//re-enable tableview interaction
tableView.isScrollEnabled = true
tableView.isUserInteractionEnabled = true
//disable pan gesture
panGesture.isEnabled = false
}
}
//select/deselect the panned over cell
func selectPannedCell(_ indexPath: IndexPath, selected: Bool, location: CGPoint, panDirection: String) {
if let cell = tableView.cellForRow(at: indexPath) {
//if cell is already selected
if cell.isSelected {
//deselect row
tableView.deselectRow(at: indexPath, animated: true)
//if panning down
if(panDirection == "Down"){
//if it's the last cell
if(indexPath >= tableView.indexPathsForVisibleRows![(tableView.indexPathsForVisibleRows?.count)!-1]){
//scroll to the next cell after the last visible
let scrollToIndex = IndexPath(row: indexPath.row + 1, section:0)
tableView.scrollToRow(at: scrollToIndex, at:
UITableViewScrollPosition.bottom, animated: true)
}
//if panning up
}else{
//if it's the first cell
if(indexPath <= tableView.indexPathsForVisibleRows![0]){
//scroll to the previous cell before first visible
let firstIndex = IndexPath(row: indexPath.row - 1, section:0)
tableView.scrollToRow(at: firstIndex, at:
UITableViewScrollPosition.top, animated: true)
}
}
} else {
//select row
tableView.selectRow(at: indexPath, animated: true, scrollPosition: UITableViewScrollPosition.none)
//if panning down
if(panDirection == "Down"){
//if it's the last cell
if(indexPath >= tableView.indexPathsForVisibleRows![(tableView.indexPathsForVisibleRows?.count)!-1]){
//scroll to the next cell after the last visible
let lastIndex = IndexPath(row: indexPath.row + 1, section:0)
tableView.scrollToRow(at: lastIndex, at:
UITableViewScrollPosition.bottom, animated: true)
}
}else{
//if it's the first cell
if(indexPath <= tableView.indexPathsForVisibleRows![0]){
//scroll to the previous cell before first visible
let firstIndex = IndexPath(row: indexPath.row - 1, section:0)
tableView.scrollToRow(at: firstIndex, at:
UITableViewScrollPosition.top, animated: true)
}
}
}
}
}
}
提前致谢
最佳答案
这里有如何在您的案例中实现它的快速示例,我认为您可以轻松地满足您的需求。
var continueScrollToBottom: Bool = false
var continueScrollToTop: Bool = false
@objc func updatePanGesture(_ sender: UIPanGestureRecognizer) {
switch sender.state {
case .changed:
continueScrollToBottom = false
continueScrollToTop = false
// If you reach to the top make scroll constant
// You can define there another condition which more suitable for you
if sender.location(in: self.view).y < 200 {
continueScrollToTop = true
continueScrollToBottom = false
self.startScrollToTop()
return
}
// If you reach to the bottom make scroll constant
// You can define there another condition which more suitable for you
if sender.location(in: self.view).y > 350 {
continueScrollToBottom = true
continueScrollToTop = false
self.startScrollToBottom()
return
}
case .ended:
continueScrollToBottom = false
continueScrollToTop = false
case .cancelled:
continueScrollToBottom = false
continueScrollToTop = false
default:
break
}
}
func startScrollToBottom() {
if continueScrollToBottom {
if let last = tableView.indexPathsForVisibleRows?.last, last.row+1 < countOfRows {
let showNext = IndexPath(row: last.row+1, section: last.section)
tableView.scrollToRow(at: showNext, at: .bottom, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now()+0.3) {
self.startScrollToBottom()
}
}
}
}
func startScrollToTop() {
if continueScrollToTop {
if let first = tableView.indexPathsForVisibleRows?.first, first.row-1 > 0 {
let showNext = IndexPath(row: first.row-1, section: first.section)
tableView.scrollToRow(at: showNext, at: .top, animated: true)
DispatchQueue.main.asyncAfter(deadline: .now()+0.3) {
self.startScrollToTop()
}
}
}
}
关于ios - 使用平移手势选择多个表格 View 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53628272/
我正在尝试基于此示例实现 highcharts 平移: http://jsfiddle.net/HXUmK/5/ 但我希望能够用鼠标左键缩放并用鼠标右键平移。所以我修改了上面的代码并设法让它工作了一点
如何删除 BufferedImage 最左边垂直列的 50px,并将其复制到与原始 BufferedImage 大小相同的新 BufferedImage 中? class TestCopyImage
以下是关于如何绘制机器人的 ARM 和肩膀并通过一些用户输入旋转它们的代码(取自 http://www.glprogramming.com/red/chapter03.html ): glPushMa
我正在使用 Swift/SpriteKit 并在 SKScene 上创建了 map 的宽图像。我正在用代码完成这一切,并希望让用户拖动手指来平移这张超宽的 map 。可以将其想象为幻想世界的老式 RP
我正在将 opencv 与 C 一起使用,我正在尝试获取 2 个摄像头之间的外部参数(旋转和平移)。 有人告诉我可以使用棋盘格图案进行校准,但我找不到任何好的样本。我该怎么做? 编辑 给出的建议是用棋
我正在尝试在 android 图库小部件中缩放/平移图像。图像覆盖整个屏幕。虽然我可以缩放/平移图库中的图像,但我无法滑动到下一张/上一张图像。单个图像的缩放和平移效果很好。 我从 Hello And
当允许平移时,所有鼠标事件上的 JavaFX ScrollPane Pane : scrollPane.setPannable(true); 如何限制 ScrollPane 仅在鼠标中间事件上平移,
我一直试图弄清楚如何在 paperjs 中使用 onMouseDrag 和 onMouseDown 进行平移/缩放。 我看到的唯一引用是在 coffescript 中,并且不使用 paperjs 工具
我正在使用 d3 来渲染简化的甘特图,并使用 d3.behavior.zoom 进行平移和缩放。 x 比例是一个时间比例(稍微修改为以列为中心的日历天等)并且工作得很好,但是我在决定如何缩放/平移 y
我已经使用关键帧为HTML/CSS3创建了动画。 动画是一个图标,该图标应该围绕其中心点旋转和缩放。 该动画可在Chrome中运行,但在Safari中,直到动画结束,它才能正确转换。 这是-定位到 s
我有一个在登录事件后调用的 TranslationService,在这个服务中我想初始化 $translateProvider.translation 但这个对象似乎无法在 app.config(..
滚动和平移有什么区别? 平移是否被识别为拖动图像/背景的 Action ,而滚动仅在您使用滚动条时? 而且,拖动和平移有什么区别? 当我拖动google maps的 map 时,哪个术语合适,拖动还是
当用户按下鼠标并移动它时,我试图平移 Canvas ,但由于某种我看不到的原因,它似乎不起作用。有什么想法吗? canvas.addEventListener('mousedown', onM
我正在拼命寻找一种用 Pyglet 控制声音(左右)平衡的方法。 我知道 3D 定位系统,但我真正想要的只是控制平移(类似于 -1:left 1:right),而 3D 系统在这种情况下会适得其反(
考虑以下两组点。我想找到最佳的 2D 平移和旋转,以对齐数据集蓝色和数据集橙色之间的最大数量的点,如果到另一个数据集中最近邻居的距离小于阈值,则认为该点对齐。 我知道这与“迭代最近点”算法有关,但在这
我正在尝试包含 @bumbeishvili 的 Convex Hull 实现( https://bl.ocks.org/bumbeishvili/f027f1b6664d048e894d19e54fe
我正在尝试在平移和缩放时使可缩放/拖动矩形不超出 svg 边界。我尝试基于此 example 来实现它,但我似乎无法让它工作。我创建了 this jsfiddle只有可缩放和可拖动的矩形。再一次,我试
UIScrollView 有一个内置的行为“directionLockEnabled”。 启用后,平移将尝试锁定到水平或垂直方向。但是当用户积极尝试对角滚动时 - 它仍然允许对角滚动。 我想删除对角滚
我正在编写一个 GUI,它将执行一些图形平移/旋转等操作。 我的问题是,当我尝试翻译我的图形时, (a) 整个屏幕都会平移,而不是我的一小块绘制区域 (b) 旧油漆留在那里,留下一个大油漆 Blob
我最近一直在做一个项目,作为我的作业。 好吧,言归正传,我有一个 Scene2D 的 Screen 实现,我遇到的问题是我在小部件上的触摸事件不会在小部件上停止。 我的意思是,如果我弹出一个窗口,并尝
我是一名优秀的程序员,十分优秀!