从“visible”获取 UITableviewCell 位置区域或窗口
我基于 uitableview 和 uitabbar 创建了一个 iPhone 应用程序。在表格视图的每个单元格上,我都有一个“添加到收藏夹按钮”。 当我按下此按钮时,我想让单元格从她的位置“跳转”到选项卡栏最喜欢的项目(与安装中的下载效果相同)
如果我位于前 10 个单元格,但如果我滚动,效果效果很好在tableView中效果不好,因为起始位置是根据uitableview大小计算的。
可以从可见区域知道单元格的位置。 ?
示例:对于第四十个单元格位置是 x:0,y:1600,w:320,y:50,我想要从屏幕顶部开始的位置而不是从 uiview 顶部开始的位置,所以像这样的 x:0,y :230,宽:320,纵:50
I create an iPhone app base on uitableview and uitabbar. On each cell of tableview i have an "add to favorite button".
When i pressed this button, i want to make the cell "jump" from her position to the favorite item of the tabbar (same as download effect in installous)
The effect work well if i'am on top 10 cell, but if i scroll in the tableView the effect is not good because start position is calculate from uitableview size.
It's possible to know the position of a cell from the visible area. ?
Exemple : for the fortieth cell position is x:0,y:1600,w:320,y:50, i want the position from the top of the screen not from the top of the uiview so something like this x:0,y:230,w:320,y:50
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,您可以使用 rectForRowAtIndexPath: ,您只需传入您单击的行的索引路径即可。
编辑
转换:
Yes you can use
rectForRowAtIndexPath:
you'll just have to pass in the indexPath of your row you've clicked.EDIT
Conversion:
迅速
In swift
所以这是我使用的代码:(我确信它可以优化):
首先将 NSindexPath ** 属性添加到您的自定义单元格。
*在您的 tableview 控制器中实现此功能:*
So here is the code i used : (it can be optimized i'm sure) :
First add NSindexPath ** property to your custom cell.
*Implement this in your tableview controller : *
是的,这是可能的
希望这会帮助你:-)
Yes this is possible like that
Hope this will help you :-)