我是iPhone應用程序的新程序員.....我想在表三個單元格(這是不同的高度)不同的單元格高度... iphone
我寫此代碼task..and輸出是令人滿意的......但我不知道..這是正確的方法或不.....提前
感謝..... :)
CGRect frame=CGRectMake(5, 43, 311, 363);
UITableView *table=[[UITableView alloc]initWithFrame:frame style:UITableViewStylePlain];
table.dataSource=self;
table.delegate=self;
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath: (NSIndexPath *)indexPath
{
static int counter=1;
if(counter==1)
{
counter=counter +1;
return 163;
}
else if(counter ==2)
{
counter=counter +1;
return 80;
}
else
{
counter=counter +1;
return 60;
}
if(counter==4)
{
counter=1;
}
}
@jrturton ....非常感謝... – GauravBoss