我是iPhone應用程序的新程序員......我有7個標籤,並在表視圖中第一個單元格1周的ImageView ......多個標籤表格單元格... iphone
我寫此代碼這.....工作令人滿意...(可能需要滾動時間)
請告訴我......這是正確的方式來完成這項任務或不.... ....?
如果沒有請...告訴我..the正確的方式...
在此先感謝
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:[NSString stringWithFormat:@"Cell %i",indexPath.section]];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:[NSString stringWithFormat:@"Cell %i",indexPath.section]] autorelease];
}
if(indexPath.row==0)
{
CGRect frame=CGRectMake(120,10, 80, 40);
UILabel *label1=[[UILabel alloc]init];
label1.frame=frame;
[email protected]"first label";
[cell.contentView addSubview:label1];
[label1 release];
CGRect frame2=CGRectMake(200,10, 80, 40);
UILabel *label2=[[UILabel alloc]init];
label2.frame=frame2;
[email protected]"second label";
[cell.contentView addSubview:label2];
[label2 release];
and so on.......
}
else if(indexPath.row==1)
{
//add four labels for this cell here......
}
return cell;
}
@Nekto ...感謝您的建議....我想問我在哪裏定義我的標籤...(在.h文件中)...有四個不同的標籤在我的第二個表格單元... – GauravBoss
...你能否建議我這樣做的正確方法...在此先感謝 – GauravBoss
我已經發布了應該解決您的問題的代碼 – Nekto