我想在单元格中为按钮设置标记时寻求帮助。这是一个问题,其中包含我之前发布的链接:iOS Using NSDictionary to load data into section and rows
但是,虽然我现在可以动态传递数据,但是每行上的续订按钮似乎无法获取数据,并且只有在选择了该部分中的任何行时才会检测到每个部分的相同书名。
根据我到目前为止所读到的内容,这是因为按钮正在被回收,因此无法检测到正确选择了哪本书。我试过设置标签:
cell.renewButton.tag = indexPath.row;
我的代码现在如何:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UserCustomCell *cell = (UserCustomCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.bookTitle.frame = CGRectMake(12, 0, 550, 40);
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"UserCustomCell" owner:self options:nil];
cell = userCustomCell;
self.userCustomCell = nil;
cell.renewButton.tag = indexPath.row;
}
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
cell.bookTitle.frame = CGRectMake(12, 0, 550, 40);
cell.renewButton.frame = CGRectMake(600, 14, 68, 24);
}
[cell.renewButton useBlackActionSheetStyle];
// ##########编辑在这里开始 dataSource = [[NSMutableDictionary alloc] init]; //这需要是一个ivar
for (NSDictionary *rawItem in myArray) {
NSString *date = [rawItem objectForKey:@"date"]; // Store in the dictionary using the data as the key
NSMutableArray *section = [dataSource objectForKey:date]; // Grab the section that corresponds to the date
if (!section) { // If there is no section then create one and add it to the dataSource
section = [[NSMutableArray alloc] init];
[dataSource setObject:section forKey:date];
}
[section addObject:rawItem]; // add your object
}
self.dataSource = dataSource;
//NSLog(@"Data Source Dictionary: %@", dataSource);
NSArray *sections =[[dataSource allKeys] sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
NSString *sectionTitle = [sections objectAtIndex:indexPath.section];
NSArray *items = [dataSource objectForKey:sectionTitle];
NSDictionary *dict = [items objectAtIndex:indexPath.row];
cell.bookTitle.text = [dict objectForKey:@"name"];
cell.detail.text = [NSString stringWithFormat:@"Due Date: %@ Due Time: %@",
[dict objectForKey:@"date"], [dict objectForKey:@"time"]];
cell.renewButton.tag = indexPath.row;
return cell;
}
但它根本不起作用。会不会感激任何建议:)谢谢!!
P.S:我的xcode副本没有更新,只到版本4。看到一些人提到在DataModel中存储标签状态,但它仅在较新版本中可用。 :)
答案 0 :(得分:2)
您不能使用按钮标签,因为它们与从中回收的单元格相同。而是使用indexPath
来确定您所在的行并直接使用它。无需通过按钮标签。
答案 1 :(得分:1)
我看不到你的cell.renewButton被分配了一个选择器方法(应该在点击按钮时触发的方法)。
[cell.renewButton addTarget:self action:@selector(renewButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
另外,我会指定一个带偏移的标签号,因为标签0几乎就像没有标记一样。 tableView的第一行将给indexPath.row = 0。
在您的代码上方,
#define OFFSET 100 /* Or any number greater than 0 */
在cellForRowAtIndexPath中,
...
[cell.renewButton addTarget:self action:@selector(renewButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
cell.renewbutton.tag = indexPath.row + OFFSET;
...
在renewButtonPressed方法中,
-(void)renewButtonPressed:(id)sender
{
tappedNum = [sender tag] - OFFSET;
/* do your stuff */
}
tappedNum将为您提供按钮被点击的行,从0开始。