I try to write to out of the cells label but it not work.
My Code is like this:
cell.idNummer.text = [NSString string With Format: @"%@", laddataId];
In core data is laddataId
an integer 32. What should I write to display in label?
I try to write to out of the cells label but it not work.
My Code is like this:
cell.idNummer.text = [NSString string With Format: @"%@", laddataId];
In core data is laddataId
an integer 32. What should I write to display in label?
Use this:
cell.idNummer.text = [NSString stringWithFormat:@"%d", laddataId];
Please see this. It will help a lot.
Hope this helps.. :)