I have a UITableView which has images for all of the cells, but ALL of the images are already on the cell (i'm not setting the images my self) and they are all loaded from images included in the project. These are not images being loaded from a server or anything. However, the scrolling of the tableview is still some what jerky. Is there anything that can be done to speed it up? I have the function to generate the cell here:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Post init, update with the fair info so it can attend/de-attend on its own
CompaniesCustomCell *cell = [CompaniesCustomCell dequeOrCreateInTable:tableView];
SectionInfo *sectionInfo = [sectionInfoArray objectAtIndex:indexPath.section];
cell.fairDictionary = [sectionInfo.arrMDetails objectAtIndex:indexPath.row];
[cell updateEventIcon:(NSString*)[[sectionInfo.arrMDetails objectAtIndex:indexPath.row] valueForKey:@"TYPE"]];
cell.lblFairName.text = [[sectionInfo.arrMDetails objectAtIndex:indexPath.row] valueForKey:@"TITLE"];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
// Set event start time, end time, and date
NSString *newDate = [MyUtil convertToLocalTime:@"MMMM dd, yyyy" :[[sectionInfo.arrMDetails objectAtIndex:indexPath.row] valueForKey:@"START_TIME"]];
NSString *startString = [MyUtil convertToLocalTime:@"hh:mm a" :[[sectionInfo.arrMDetails objectAtIndex:indexPath.row] valueForKey:@"START_TIME"]];
NSString *endString = [MyUtil convertToLocalTime:@"hh:mm a" :[[sectionInfo.arrMDetails objectAtIndex:indexPath.row] valueForKey:@"END_TIME"]];
cell.lblFairDate.text = newDate;
cell.lblFairStartTime.text = startString;
cell.lblFairEndTime.text = endString;
return cell;
}
Is there anything I am doing wrong that could be slowing it down?
EDIT
I'm including the code for the convertToLocalTime function here as I think this may be the root cause. However...I'm really confused how to optimize it. I'm taking the timestamp value from the server (in UTC) and I am converting that to the users local timezone. Is this process really that slow?
// Converts given time string into the users current timezone
// based on the location of their phone
+(NSString *)convertToLocalTime:(NSString*)format :(NSString*)stringDate {
// Get the date in the servers time zone
NSDate *date = [MyUtil convertToServerDate:stringDate];
// Convert the date to the local timezone
NSDateFormatter *localFormat = [[NSDateFormatter alloc] init];
[localFormat setDateFormat:format];
NSString *localDate = [localFormat stringFromDate:date];
[localFormat release];
return localDate;
}
// Provides a NSDate object with the servers timezone set
+(NSDate *)convertToServerDate:(NSString*)stringDate {
// First get the NSDate object in the servers timezone
NSTimeZone *tz = [NSTimeZone timeZoneWithName:ServerTimezone];
NSDateFormatter *inFormat = [[NSDateFormatter alloc] init];
[inFormat setDateFormat:@"yyyyMMddHHmmss"];
[inFormat setTimeZone:tz];
NSDate *date = [inFormat dateFromString:stringDate];
[inFormat release];
return date;
}
