IOS 7 Table cell not show
- by user2855572
I am getting very strange problem in my app. I am creating table view cell dynamically.My problem is that textlable is not showing. Code was working on ios 5 and ios 6 but not working on ios 7 it is giving problem.Anybody help me
NSString *Str=[NSString stringWithFormat:@"%@",[dateCalcuArray
objectAtIndex:indexPath.row]]; Str=[Str
stringByReplacingOccurrencesOfString:@"(" withString:@""];
Str=[Str stringByReplacingOccurrencesOfString:@")" withString:@""];
Str=[Str stringByReplacingOccurrencesOfString:@"\"" withString:@""];
ipad_Cell.datelbl.text=Str;
ipad_Cell.datelbl.textColor=[UIColor whiteColor];