Comment puis-je changer la ligne de séparation qui apparaît à la fin de chaque cellule dans UITableView? Je veux avoir une image qui est une fine séparateur de ligne de type image.
Réponses
Trop de publicités?
phix23
Points
24407
Sakshi
Points
240
Tom Sawyer
Points
246
D'abord, vous pouvez écrire le code:
{ [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];}
après que
{ #define cellHeight 80 // You can change according to your req.<br>
#define cellWidth 320 // You can change according to your req.<br>
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UIImageView *imgView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"seprater_line.png"]];
imgView.frame = CGRectMake(0, cellHeight, cellWidth, 1);
[customCell.contentView addSubview:imgView];
return customCell;
}
}
Denis
Points
91
SeanChense
Points
66