TableView 和自定义单元格
我需要有人帮助我在使用 didSelectRowAtIndexPath
选择时切换自定义单元格,因此想法是将自定义 cell1
设置为状态,并且当用户选择它,这将消失,cell2
将淡入其中,显示该州的首都,但除所选单元格之外的其他单元格将保留为 cell1(或州)。
I am in a need for someone to help me out on switching custom cells when selected using didSelectRowAtIndexPath
, so the idea is to have custom cell1
set as a state and when the user selects it this will disappear and cell2
will fade in which shows the capital of that state but other cells will remain as cell1 (or states) except the one which was selected.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我要做的...
tableView.h:
tableview.m (添加这些方法):
在 -(void)viewDidLoad 添加:
更改:
添加:
This is how I'd do it...
tableView.h:
tableview.m (add these methods) :
in -(void)viewDidLoad add:
change:
add:
您必须仅使用一个单元格,并具有多个视图(某些视图的 alpha 设置为透明或隐藏),
当选择该单元格时,在动画块内切换视图
you must use only one cell, with multiples views (some views with alpha set to transparent, or hide)
when the cell is selected, switch the views inside an animation block