我正在使用自定义绘制的UITableViewCell,包括单元格accessoryView
的相同内容。我对accessoryView的设置通过以下方式进行:
UIImage *accessoryImage = [UIImage imageNamed:@"accessoryDisclosure.png"];
UIImageView *accImageView = [[UIImageView alloc] initWithImage:accessoryImage];
accImageView.userInteractionEnabled = YES;
[accImageView setFrame:CGRectMake(0, 0, 28.0, 28.0)];
self.accessoryView = accImageView;
[accImageView release];
当初始化单元格时,使用initWithFrame:reuseIdentifier:
我确保设置以下属性:
self.userInteractionEnabled = YES;
不幸的是,在我的UITableViewDelegate中,我的tableView:accessoryButtonTappedForRowWithIndexPath:
方法(尝试重复10次)没有被触发。代表肯定是正确连接的。
可能会遗漏什么?
谢谢大家。
答案 0 :(得分:228)
遗憾的是,除非使用其中一种预定义类型时提供的内部按钮类型被轻触,否则不会调用该方法。要使用你自己的,你必须创建你的配件作为按钮或其他UIControl子类(我建议使用-buttonWithType:UIButtonTypeCustom
按钮并设置按钮的图像,而不是使用UIImageView。
这里有一些我在Outpost中使用的东西,它定制了足够的标准小部件(只是略微,以匹配我们的蓝绿色)我做了我自己的UITableViewController中间子类来保存所有其他表视图使用的实用程序代码(他们现在是OPTableViewController的子类。)
首先,此函数使用我们的自定义图形返回一个新的详细信息披露按钮:
- (UIButton *) makeDetailDisclosureButton
{
UIButton * button = [UIButton outpostDetailDisclosureButton];
[button addTarget: self
action: @selector(accessoryButtonTapped:withEvent:)
forControlEvents: UIControlEventTouchUpInside];
return ( button );
}
该按钮将在完成后调用此例程,然后为附件按钮提供标准的UITableViewDelegate例程:
- (void) accessoryButtonTapped: (UIControl *) button withEvent: (UIEvent *) event
{
NSIndexPath * indexPath = [self.tableView indexPathForRowAtPoint: [[[event touchesForView: button] anyObject] locationInView: self.tableView]];
if ( indexPath == nil )
return;
[self.tableView.delegate tableView: self.tableView accessoryButtonTappedForRowWithIndexPath: indexPath];
}
此函数通过从按钮提供的事件中获取触摸的表视图中的位置并向表视图询问该点的行的索引路径来定位行。
答案 1 :(得分:77)
我发现这个网站非常有帮助: custom accessory view for your uitableview in iphone
简而言之,请在cellForRowAtIndexPath:
:
UIImage *image = (checked) ? [UIImage imageNamed:@"checked.png"] : [UIImage imageNamed:@"unchecked.png"];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
CGRect frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
button.frame = frame;
[button setBackgroundImage:image forState:UIControlStateNormal];
[button addTarget:self action:@selector(checkButtonTapped:event:) forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor clearColor];
cell.accessoryView = button;
然后,实现这个方法:
- (void)checkButtonTapped:(id)sender event:(id)event
{
NSSet *touches = [event allTouches];
UITouch *touch = [touches anyObject];
CGPoint currentTouchPosition = [touch locationInView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint: currentTouchPosition];
if (indexPath != nil)
{
[self tableView: self.tableView accessoryButtonTappedForRowWithIndexPath: indexPath];
}
}
答案 2 :(得分:7)
我的方法是创建一个UITableViewCell
子类,并封装将在其中调用常用UITableViewDelegate
方法的逻辑。
// CustomTableViewCell.h
@interface CustomTableViewCell : UITableViewCell
- (id)initForIdentifier:(NSString *)reuseIdentifier;
@end
// CustomTableViewCell.m
@implementation CustomTableViewCell
- (id)initForIdentifier:(NSString *)reuseIdentifier;
{
// the subclass specifies style itself
self = [super initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:reuseIdentifier];
if (self) {
// get the button elsewhere
UIButton *accBtn = [ViewFactory createTableViewCellDisclosureButton];
[accBtn addTarget: self
action: @selector(accessoryButtonTapped:withEvent:)
forControlEvents: UIControlEventTouchUpInside];
self.accessoryView = accBtn;
}
return self;
}
#pragma mark - private
- (void)accessoryButtonTapped:(UIControl *)button withEvent:(UIEvent *)event
{
UITableViewCell *cell = (UITableViewCell*)button.superview;
UITableView *tableView = (UITableView*)cell.superview;
NSIndexPath *indexPath = [tableView indexPathForCell:cell];
[tableView.delegate tableView:tableView accessoryButtonTappedForRowWithIndexPath:indexPath];
}
@end
答案 3 :(得分:3)
Jim Dovey对以上答案的延伸:
将UISearchBarController与UITableView一起使用时要小心。在这种情况下,您要检查self.searchDisplayController.active
并使用self.searchDisplayController.searchResultsTableView
代替self.tableView
。
否则,当searchDisplayController处于活动状态时,您将获得意外结果,尤其是在滚动搜索结果时。
例如:
- (void) accessoryButtonTapped:(UIControl *)button withEvent:(UIEvent *)event
{
UITableView* tableView = self.tableView;
if(self.searchDisplayController.active)
tableView = self.searchDisplayController.searchResultsTableView;
NSIndexPath * indexPath = [tableView indexPathForRowAtPoint:[[[event touchesForView:button] anyObject] locationInView:tableView]];
if(indexPath)
[tableView.delegate tableView:tableView accessoryButtonTappedForRowWithIndexPath:indexPath];
}
答案 4 :(得分:2)
为按钮标签定义一个宏:
#define AccessoryViewTagSinceValue 100000 // (AccessoryViewTagSinceValue * sections + rows) must be LE NSIntegerMax
创建按钮并在创建单元格时设置cell.accessoryView
UIButton *accessoryButton = [UIButton buttonWithType:UIButtonTypeContactAdd];
accessoryButton.frame = CGRectMake(0, 0, 30, 30);
[accessoryButton addTarget:self action:@selector(accessoryButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
cell.accessoryView = accessoryButton;
在UITableViewDataSource方法中使用indexPath设置cell.accessoryView.tag -tableView:cellForRowAtIndexPath:
cell.accessoryView.tag = indexPath.section * AccessoryViewTagSinceValue + indexPath.row;
按钮的事件处理程序
- (void) accessoryButtonTapped:(UIButton *)button {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:button.tag % AccessoryViewTagSinceValue
inSection:button.tag / AccessoryViewTagSinceValue];
[self.tableView.delegate tableView:self.tableView accessoryButtonTappedForRowWithIndexPath:indexPath];
}
实现UITableViewDelegate方法
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
// do sth.
}
答案 5 :(得分:2)
当点击按钮时,你可以让它在UITableViewCell子类中调用以下方法
-(void)buttonTapped{
// perform an UI updates for cell
// grab the table view and notify it using the delegate
UITableView *tableView = (UITableView *)self.superview;
[tableView.delegate tableView:tableView accessoryButtonTappedForRowWithIndexPath:[tableView indexPathForCell:self]];
}
答案 6 :(得分:1)
您必须使用UIControl
来正确获取事件发送(例如UIButton
),而不是简单的UIView/UIImageView
。
答案 7 :(得分:1)
使用yanchenko方法,我不得不添加:[accBtn setFrame:CGRectMake(0, 0, 20, 20)];
如果您正在使用xib文件来自定义tableCell,那么initWithStyle:reuseIdentifier:不会被调用。
改为覆盖:
-(void)awakeFromNib
{
//Put your code here
[super awakeFromNib];
}
答案 8 :(得分:0)
从iOS 3.2开始,您可以避免其他人推荐的按钮,而是使用带有轻击手势识别器的UIImageView。确保启用用户交互,默认情况下在UIImageViews中关闭。
答案 9 :(得分:0)
快速5
此方法使用UIButton.tag
通过基本的位移位来存储indexPath。只要您没有超过65535个节或行,该方法就可以在32和64位系统上使用。
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cellId")
let accessoryButton = UIButton(type: .custom)
accessoryButton.setImage(UIImage(named: "imageName"), for: .normal)
accessoryButton.sizeToFit()
accessoryButton.addTarget(self, action: #selector(handleAccessoryButton(sender:)), for: .touchUpInside)
let tag = (indexPath.section << 16) | indexPath.row
accessoryButton.tag = tag
cell?.accessoryView = accessoryButton
}
@objc func handleAccessoryButton(sender: UIButton) {
let section = sender.tag >> 16
let row = sender.tag & 0xFFFF
// Do Stuff
}