ios - 使用单元格按钮操作传递多个参数

标签 ios objective-c xcode uitableview uibutton

注意:我不需要任何有关使用 UITableview 的 didselect 委托(delegate)发送数据的建议

myButton.h

#import <UIKit/UIKit.h>
@interface myButton : UIButton
{
    id userData;
}

@property (strong,nonatomic) NSString* data1;

@end

myButton.m

#import "myButton.h"

@implementation myButton

/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    // Drawing code
}
*/

@end

我的 testCollectionViewCell.h 自定义单元格

#import "myButton.h"
@interface testCollectionViewCell : UICollectionViewCell 
@property (nonatomic,weak) IBOutlet myButton *serviceFav;

我的 testCollectionViewCell.m 自定义单元格

#import "testCollectionViewCell.h"
#import <QuartzCore/QuartzCore.h>

@implementation testCollectionViewCell
 @synthesize serviceFav;
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code

        //self.serviceFav=[myButton buttonWithType:UIButtonTypeCustom];

    }
    return self;
}


// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{



}

@end

这是我的 Collection View 委托(delegate)代码

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    testCollectionViewCell *cell = [testCollectionViewCell dequeueReusableCellWithReuseIdentifier:@"testCollectionViewCell" forIndexPath:indexPath];
    cellData = [self.collectionData objectAtIndex:[indexPath row]];

    cell.serviceFav.data1 = @"data1"; **//shows error here and kills**

    [cell.serviceFav addTarget:self action:@selector(touchUpHandler:) forControlEvents:UIControlEventTouchUpInside];


    return cell;
}

//------这没有被调用----我想调用它

-(void)touchUpHandler:(myButton*)sender
{

    UIButton *button = (myButton *)sender; //instance of UIButton
    NSLog(@"Data 1 = %@",sender.data1);
}

最佳答案

我刚刚使用与问题中相同的过程制作了一个示例,并且它有效。

链接:https://www.dropbox.com/s/lb2k7nzsytxjnl2/tabletest.zip?dl=0

采用自定义按钮类

MyButton.h

#import <UIKit/UIKit.h>

@interface MyButton : UIButton

@property (strong,nonatomic) NSString* data1;
@property (strong,nonatomic) NSString* data2;

@end

MyButton.m

#import "MyButton.h"

@implementation MyButton

@end

为您的 CustomCell 类创建 IBOutlet

CustomTableViewCell.h

#import <UIKit/UIKit.h>
#import "MyButton.h"

@interface CustomTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet MyButton *btnLike;

@end

ViewController.m

#import "ViewController.h"
#import "CustomTableViewCell.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 5;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    CustomTableViewCell* cell = (CustomTableViewCell*)[tableView dequeueReusableCellWithIdentifier:@"CustomTableViewCell"];

    cell.btnLike.data1 = @"data1";
    cell.btnLike.data2 = @"data2";

    [cell.btnLike addTarget:self action:@selector(touchUpHandler:) forControlEvents:UIControlEventTouchUpInside];

    return cell;

}

- (void) touchUpHandler:(MyButton *)sender {

    NSLog(@"Data 1 = %@",sender.data1);
    NSLog(@"Data 2 = %@",sender.data2);

}
@end

单击单元格中的按钮时,它将转到选择器方法 touchUpHandler 并在控制台上打印

2016-10-12 23:14:39.034 tabletest[28414:671128] Data 1 = data1
2016-10-12 23:14:39.035 tabletest[28414:671128] Data 2 = data2

关于ios - 使用单元格按钮操作传递多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40004565/

相关文章:

ios - 空字符串使 Swift 有条件地崩溃

ios - ios7 中 AlertView 不旋转?

objective-c - NSUserScriptTask 困难

iphone - 网络推送通知

ios - Xcode 和 iOS 应用程序数据文件放置默认值

ios - 如何使用 Core Animation 为脉动的蓝点制作动画?

ios - 无法使用非自由模块为 iOS 编译 OpenCV

ios - UICollectionView 单元格未在 reloadData 上清除

Objective-C 'RootViewController' 可能无法响应 xCode 中的 '-parseXMLFileAtURL:' 错误

ios - 在 Xcode 中,如何抑制菜单添加的 "MARK:"部分?