作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有谁知道为什么当快速上下滚动(通过两根手指触摸)时,它经常“卡住”并在 ScrollView 中间错误地弹跳?这种行为非常烦人,并且会带来糟糕的用户体验。
Xcode 的 ScrollView 可以水平和垂直弹跳,并且不会经常出现这种情况。
最佳答案
这似乎是 NSScrollView 中的一个错误。
您可以启用主轴滚动,这基本上可以消除问题:
scrollView.usesPredominantAxisScrolling = YES;
或者,您可以禁用水平弹跳,这就是 Finder 的作用:
scrollView.horizontalScrollElasticity = NSScrollElasticityNone;
关于 cocoa ScrollView 在文件中间的特立独行者上不断弹跳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21339616/
我正在尝试运行这个命令 ld -Ttext 0x1000 -o kernel.bin loader.o main.o video.o 但它返回 ld: unknown option: -Ttext 是
我是一名优秀的程序员,十分优秀!