0
我是新來的ios如何更新uitableview中的進度條。一般來說,我有一個按鈕,當我在一個特定的細胞點擊一個按鈕,我需要顯示在該單元格僅顯示進度條,請幫助我,在此先感謝ios進度條在uitableview中
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"Categorycell";
Categorycell *cell = (Categorycell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"Categorycell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
[tableView setSeparatorColor:[UIColor clearColor]];- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"Categorycell";
Categorycell *cell = (Categorycell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"Categorycell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
[tableView setSeparatorColor:[UIColor clearColor]];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
NSLog(@"Index : %d",indexPath.row);
NSString *str_filepath=[thumbnails objectAtIndex:indexPath.row];
cell.cell_img.image=[[UIImage alloc]initWithContentsOfFile:str_filepath];
cell.title.text=[arr_book objectAtIndex:indexPath.row];
cell.sub_title.text=[arr_gen objectAtIndex:indexPath.row];
NSString *str_rating=[arr_rating objectAtIndex:indexPath.row];
int val_rating=[str_rating integerValue];
// cell.cell_btn.hidden=YES;
cell.cell_btn.tag = indexPath.row*10+1;
[cell.cell_btn addTarget:self action:@selector(btnDown:) forControlEvents:UIControlEventTouchUpInside];
cell.cell_ReadBtn.tag =indexPath.row*10+1;
[cell.cell_ReadBtn addTarget:self action:@selector(btnRead:) forControlEvents:UIControlEventTouchUpInside];
cell.cell_Progress.tag= indexPath.row*10+1;
if(!bIspress)
{
cell.cell_Progress.hidden=YES;
}
NSString *comicbook_id = [arr_comic_id objectAtIndex:indexPath.row];
NSString *filePath = [NSString stringWithFormat:@"book_%@.pdf",comicbook_id];
NSLog(@"Book Name : %@",filePath);
if(![appDelegate check_Book_available:filePath])
{
NSLog(@"Book Name Not : %@",filePath);
cell.cell_ReadBtn.hidden=YES;
cell.cell_btn.hidden= NO;
}
else
{
cell.cell_btn.hidden=YES;
cell.cell_ReadBtn.hidden=NO;
}
cell.tag=indexPath.row*10+1;
return cell;
}
解釋你想實現的目標,我的意思是單元格點擊的進度如何發生 – Retro
我只需要顯示當我點擊表格中的按鈕。我需要顯示這些單元格的progreess欄。我的意思是其實我隱藏進度條後點擊按鈕我需要顯示進度條,它是請幫助我 – rakesh
所以你的意思是你可以隱藏它,但無法顯示,添加一些截圖 – Retro