如何在 iOS、objective c 中的 didselectrowatindexpath 中触发按钮操作方法
how to fire a button action method in didselectrowatindexpath in iOS, objective c
我有一个带有自定义 table 视图单元格的 table 视图。在 table 视图单元格中有两个标签和一个 button.what 我希望它为用户选择的行触发按钮操作以隐藏同一行中的标签。
这是我用于 table 视图的控制器
ViweController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tablev;
@end
ViewController.m
#import "ViewController.h"
#import "TestTableViewCell.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
cell.selectionStyle = UITableViewCellFocusStyleCustom;
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger sec = indexPath.section;
NSInteger rw = indexPath.row;
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
cell.numberlabel.hidden = YES;
NSLog(@"selected section :%li ---> selected row :%li",(long)sec, (long)rw);
//in here I want fire the button acction in the cell for each row when cell tap.(not when the button click in the cell).
}
TestTableViewCell.h
#import <UIKit/UIKit.h>
@interface TestTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *staticlabel;
@property (weak, nonatomic) IBOutlet UILabel *numberlabel;
@property (weak, nonatomic) IBOutlet UIButton *hidebutton;
@end
TestTableViewCell.m
//我已经尝试实现按钮点击方法 here.It worked.but 那时它无法识别哪个单元格被录音。
**注意:我已经尝试实现按钮点击方法 here.I worked.but,但它无法识别哪个单元格被录音。 **
您可以在按钮操作中获得 indexPath.row
个 UITableView
个:
对 yourviewcontroller.h
文件中的按钮进行操作:
- (IBAction) My_button:(id)sender;
在 yourviewcontroller.m
文件中:
- (IBAction)My_button:(id)sender
{
CGPoint buttonPosition = [sender convertPoint:CGPointZero
toView:self.tbl_view];
NSIndexPath *indexPath = [self.tbl_view indexPathForRowAtPoint:buttonPosition];
NSLog(@"%ld",(long)indexPath.row);
}
并且如果您想在 didSelectRowAtIndexPath
中执行此操作,则无需再次使单元格出队。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%ld",(long)indexPath.row);
NSLog(@"%ld",(long)indexPath.section);
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.numberlabel.hidden = YES;
}
您可以通过两种方式实现,一种是将 Button Action 添加到 cellForRowAtIndexPath
中,然后设置 Button 标签,如下代码所示:
hidebutton.tag=indexPath.row;
[hidebutton addTarget:self
action:@selector(hideaction:)
forControlEvents:UIControlEventTouchUpInside];
其作用方式为
-(IBAction)hideaction:(UIButton*)sender
{
NSIndexPath *hideIndexpath = [NSIndexPath indexPathForRow:sender.tag inSection:0];
TestTableViewCell *cell = (TestTableViewCell *)[self.tablev cellForRowAtIndexPath:hideIndexpath];
}
另一种方法是您可以使用以下代码从 DidSelect 方法实现同样的目的:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
TestTableViewCell *cell = (TestTableViewCell *)[self.tablev cellForRowAtIndexPath:indexPath];
//use your cell object for hide anyting
}
你需要先获取正确的单元格,可以通过替换
来实现
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
通过这个:
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
你的方法:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger sec = indexPath.section;
NSInteger rw = indexPath.row;
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.numberlabel.hidden = YES;
NSLog(@"selected section :%li ---> selected row :%li",(long)sec, (long)rw);
//in here I want fire the button acction in the cell for each row when cell tap.(not when the button click in the cell).
}
希望对您有所帮助!
我有一个带有自定义 table 视图单元格的 table 视图。在 table 视图单元格中有两个标签和一个 button.what 我希望它为用户选择的行触发按钮操作以隐藏同一行中的标签。
这是我用于 table 视图的控制器
ViweController.h
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
@property (weak, nonatomic) IBOutlet UITableView *tablev;
@end
ViewController.m
#import "ViewController.h"
#import "TestTableViewCell.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 2;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
cell.selectionStyle = UITableViewCellFocusStyleCustom;
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger sec = indexPath.section;
NSInteger rw = indexPath.row;
TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
cell.numberlabel.hidden = YES;
NSLog(@"selected section :%li ---> selected row :%li",(long)sec, (long)rw);
//in here I want fire the button acction in the cell for each row when cell tap.(not when the button click in the cell).
}
TestTableViewCell.h
#import <UIKit/UIKit.h>
@interface TestTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *staticlabel;
@property (weak, nonatomic) IBOutlet UILabel *numberlabel;
@property (weak, nonatomic) IBOutlet UIButton *hidebutton;
@end
TestTableViewCell.m //我已经尝试实现按钮点击方法 here.It worked.but 那时它无法识别哪个单元格被录音。
**注意:我已经尝试实现按钮点击方法 here.I worked.but,但它无法识别哪个单元格被录音。 **
您可以在按钮操作中获得 indexPath.row
个 UITableView
个:
对 yourviewcontroller.h
文件中的按钮进行操作:
- (IBAction) My_button:(id)sender;
在 yourviewcontroller.m
文件中:
- (IBAction)My_button:(id)sender
{
CGPoint buttonPosition = [sender convertPoint:CGPointZero
toView:self.tbl_view];
NSIndexPath *indexPath = [self.tbl_view indexPathForRowAtPoint:buttonPosition];
NSLog(@"%ld",(long)indexPath.row);
}
并且如果您想在 didSelectRowAtIndexPath
中执行此操作,则无需再次使单元格出队。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"%ld",(long)indexPath.row);
NSLog(@"%ld",(long)indexPath.section);
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.numberlabel.hidden = YES;
}
您可以通过两种方式实现,一种是将 Button Action 添加到 cellForRowAtIndexPath
中,然后设置 Button 标签,如下代码所示:
hidebutton.tag=indexPath.row;
[hidebutton addTarget:self
action:@selector(hideaction:)
forControlEvents:UIControlEventTouchUpInside];
其作用方式为
-(IBAction)hideaction:(UIButton*)sender
{
NSIndexPath *hideIndexpath = [NSIndexPath indexPathForRow:sender.tag inSection:0];
TestTableViewCell *cell = (TestTableViewCell *)[self.tablev cellForRowAtIndexPath:hideIndexpath];
}
另一种方法是您可以使用以下代码从 DidSelect 方法实现同样的目的:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
TestTableViewCell *cell = (TestTableViewCell *)[self.tablev cellForRowAtIndexPath:indexPath];
//use your cell object for hide anyting
}
你需要先获取正确的单元格,可以通过替换
来实现TestTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"mycell"];
通过这个:
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
你的方法:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger sec = indexPath.section;
NSInteger rw = indexPath.row;
TestTableViewCell *cell = (TestTableViewCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.numberlabel.hidden = YES;
NSLog(@"selected section :%li ---> selected row :%li",(long)sec, (long)rw);
//in here I want fire the button acction in the cell for each row when cell tap.(not when the button click in the cell).
}
希望对您有所帮助!