我创建了一个带有自己的.m,.h和.xib文件的自定义单元格。在单元格中,我有一个UIButton,我添加到IB中的xib。
我可以在这个自定义单元格的.m中从UIButton接收IBAction,但实际上,我想将该按钮转发到托管表格的主视图.m(以及自定义单元格)并使用那里的行动。
我花了最后4个小时尝试各种方法 - 我应该使用NSNotificationCenter吗? (我已经尝试过Notifications很多但是无法让它工作,不确定我是否应该坚持不懈)
答案 0 :(得分:9)
您需要在单元格的.h文件中使用委托。 像这样声明委托
@class MyCustomCell;
@protocol MyCustomCellDelegate
- (void) customCell:(MyCustomCell *)cell button1Pressed:(UIButton *)btn;
@end
然后声明字段和属性
@interface MyCustomCell:UItableViewCell {
id<MyCustomCellDelegate> delegate;
}
@property (nonatomic, assign) id<MyCustomCellDelegate> delegate;
@end
<。>文件中的
@synthesize delegate;
并按钮方法
- (void) buttonPressed {
if (delegate && [delegate respondToSelector:@selector(customCell: button1Pressed:)]) {
[delegate customCell:self button1Pressed:button];
}
}
您的视图控制器必须采用此协议
.h文件
#import "MyCustomCell.h"
@interface MyViewController:UIViewController <MyCustomCellDelegate>
.....
.....
@end
在cellForRow中的.m文件中:您需要将属性委托添加到单元格
cell.delegate = self;
最后从协议
实现方法- (void) customCell:(MyCustomCell *)cell button1Pressed:(UIButton *)btn {
}
对不起我的英文和代码。在没有XCODE的情况下从我的电脑上写下来
答案 1 :(得分:1)
我遇到了同样的问题,我通过将单元格子类化为它自己的类来解决它,并将按钮作为出口放置,并使用模型中的数据填充单元格,同时使用返回单元格的方法。目前正在观看。
例如,如果您有一个Person类,并且每个人都有一个姓名,一个姓氏和一些朋友。每次单击单元格中的按钮时,特定人员的朋友数量将增加1。
_______________DATA SOURCE___________________________
#import <Foundation/Foundation.h>
@interface Person : NSObject
@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *comment;
@property (nonatomic) NSInteger numberOfFriends;
+(instancetype)personWithName:(NSString *)aName Surname:(NSString *)aSurname;
@end
#import "Person.h"
@implementation Person
+(instancetype)personWithName:(NSString *)aName Surname:(NSString *)aSurname{
Person *person = [[Person alloc] init];
[person setName:aName];
[person setSurname:aSurname];
[person setNumberOfFriends:0];
return person;
}
@end
_____________________PERSON CELL________________________
#import <UIKit/UIKit.h>
@interface PersonCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UILabel *friendsNum;
@property (strong, nonatomic) IBOutlet UIButton *friendsBtn;
@property (strong, nonatomic) IBOutlet UILabel *nameLabel;
@property (strong, nonatomic) IBOutlet UILabel *surnameLabel;
@end
我个人创建了一个私有的NSArray来保存我的Person对象的名字,并创建了一个私有的NSMutableDictionary来保存我的Person对象,并将密钥设置为人员的名字。
_____________________PERSON TABLE VIEW________________________
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
PersonCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
NSString *name = [peopleNames objectAtIndex:indexPath.row];
Person *person = [people objectForKey:name];
if(cell == nil)
{
cell = [[PersonCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
cell.nameLabel.text = person.name;
cell.surname.Label.text = person.surname
[cell.friendsButton addTarget:self action:@selector(moreFriends:) forControlEvents:UIControlEventTouchUpInside];
cell.friendsNum.text = [NSString stringWithFormat:@"%i", person.numberOfFriends];
return cell;
}
- (IBAction)moreFriends:(id)sender {
UIButton *btn = (UIButton *)sender;
PersonCell *cell = [self parentCellForView:btn];
Person *person = [people objectForKey:cell.nameLabel.text];
person.numberOfFriends++;
[self.tableView reloadData];
}
-(PersonCell *)parentCellForView:(id)theView
{
id viewSuperView = [theView superview];
while (viewSuperView != nil) {
if ([viewSuperView isKindOfClass:[PersonCell class]]) {
return (PersonCell *)viewSuperView;
}
else {
viewSuperView = [viewSuperView superview];
}
}
return nil;
}
答案 2 :(得分:0)
我建议使用delegate.
答案 3 :(得分:0)
您可能只想在视图控制器中为按钮添加一个选择器,该按钮具有您的tableview。
你的cellForIndexPath函数中的
[yourCell.button addTarget:self action:@selector(customActionPressed:) forControlEvents:UIControlEventTouchDown];
然后在“customActionPressed:(id)sender”方法中按下按钮
//Get the superview from this button which will be our cell
UITableViewCell *owningCell = (UITableViewCell*)[sender superview];
//From the cell get its index path.
NSIndexPath *pathToCell = [myTableView indexPathForCell:owningCell];
//Do something with our path
除非您没有列出更多因素,否则这可能是一个更好的解决方案。
我有一个可能解释更多http://www.roostersoftstudios.com/2011/05/01/iphone-custom-button-within-a-uitableviewcell/
的教程答案 4 :(得分:0)
为什么不为自定义单元格创建委托(使用@protocol)。然后,您可以将主视图指定为每个单元格的委托,并适当地处理该操作。