比较Cell的索引路径和uiButton这可能吗?

时间:2012-04-20 14:30:11

标签: iphone ios

我在一个班级中有一个Uibutton,并且在不同的班级中可以使用...

现在我想将IndexPAth(特定细胞位置)与不同类别的Uibutton进行比较......

实际上我想在特定细胞上打印不同的不同值我从不同的Uibutton的方法中获取另一个类...

这是我的代码......

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath  *)indexPath {
//- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath   *)indexPath {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle   reuseIdentifier:CellIdentifier] autorelease];
}




if(indexPath == btn1){   // This is the Line What i want , i am trying this but dont go inside the condition..


UILabel  *lbl = [[UILabel alloc] initWithFrame:CGRectMake(200, 5, 290, 60)];
lbl.backgroundColor = [UIColor clearColor];
//lbl.editable = NO;
lbl.font = [UIFont fontWithName:@"Helvetica-Bold" size:25];
//  txtView1.text= textviewstring;
// txtView1.text = @"Personal";

if([fetchFormArray222 count]<1){
lbl.text=@"";

}
else{

lbl.text = [fetchFormArray222 objectAtIndex:0];

}
//  [txtView1 setDelegate:self];
lbl.textColor = [UIColor blackColor];
lbl.textAlignment = UITextAlignmentLeft;
[[cell contentView] addSubview:lbl];    




}
else {
}

2 个答案:

答案 0 :(得分:0)

您是否尝试使用其他类中的按钮在您关注的类中执行新的提取,加载fetctFormArray222然后重新加载UITableView?

答案 1 :(得分:0)

查看UITableView的Apple文档。