我有一个 uitableview,每行有 2 个 uibutton(button1 和 button2)。现在我知道 indexPath.row (例如:indexPath.row =2)。当我有 uitableview 的 IndexPath.row 时,如何获得 button1?请给我任何建议来解决这个问题。提前致谢。
我使用了这段代码:
-(void)UpdateBtn:(NSNotification *)notification {
//Update your button image code here
shotIDPass =[[NSUserDefaults standardUserDefaults]valueForKey :@"videoIDstring"];
NSLog(@"%@",shotIDPass);
for (int i =0; i < [shotIDArray count]; i++) {
if([[shotIDArray objectAtIndex:i] isEqualToString:shotIDPass])
{
NSLog(@"IndexPath of row %@",i); // get indexPath.row at here
}
}
}