本文介绍了拖动单元格时如何在 UITableViewCell 中隐藏阴影的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有带有隐藏分隔线的 UITableView,当我拖动单元格时,当边框上下出现时会出现某种阴影.如何隐藏这个?请看例子:
I have UITableView with hided separator line, and when I dragging cell, shadows appears some kind as borders comes out on up and down. How to hide this? Please see example:
非常感谢!
推荐答案
所以,我有了答案,只是 UITableView 的子类和方法:
So, I have answer, just subclass of UITableView with method:
- (void) didAddSubview:(UIView *)subview
{
[super didAddSubview:subview];
if([subview.class.description isEqualToString:@"UIShadowView"]) {
subview.hidden = YES;
}
}
这篇关于拖动单元格时如何在 UITableViewCell 中隐藏阴影的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!