1

我在一个班级有一个 Uibutton,在不同班级有一个 Uitable ...

现在我想比较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 {
}
4

2 回答 2

0

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

于 2012-04-20T14:41:17.153 回答
0

查看 UITableView 的苹果文档。

于 2013-01-03T10:25:06.233 回答