IOS 7 Table cell not show
Posted
by
user2855572
on Stack Overflow
See other posts from Stack Overflow
or by user2855572
Published on 2013-11-03T09:41:29Z
Indexed on
2013/11/03
9:53 UTC
Read the original article
Hit count: 143
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];
© Stack Overflow or respective owner