When I trying to display tamil characters in my UITableview
I can't able to smoothly scroll the tableview
but if I replace tamil characters with english characters there is no problem in scrolling.
Any solutions ?
Thanks in advance !!!
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.backgroundColor=[UIColor yellowColor];
UILabel *lblTitle = [[UILabel alloc]init];
[lblTitle setTag:100];
[lblTitle setBackgroundColor:[UIColor clearColor]];
[lblTitle setFont:[UIFont fontWithName:@"Helvetica" size:13]];
[lblTitle setFont:[UIFont boldSystemFontOfSize:14]];
[lblTitle setTextColor:[UIColor blackColor]];
[cell.contentView addSubview:lblTitle];
[lblTitle release];
}
UILabel *plblTitle = (UILabel*) [cell.contentView viewWithTag:100];
News *pNewsObj = [appDelegate.CurrentNewsArray objectAtIndex:indexPath.row];
plblTitle.text = pNewsObj.pHeadLine;
return cell;
}