views:

74

answers:

1

i have a cell in which 2 labels are present,i want to move top label to align centre and label to to disappear ,how can i do it ...

please any one help me....

+1  A: 

Hello:)

[labelOne setTextAlignment:UITextAlignmentCenter]; //to center text in the UILabel
[labelTwo setHidden:YES] //there, but not visible.
RickiG
i want label to drag centre of my cell which present in a tabel...i dont want to move the text in a label then
ven in Iphone world
Sorry, I don't understand what you want to do :/Do you want to position a UILabel so it starts (top left corner) in the middle of a UITableViewCell?
RickiG