Pages

Wednesday 31 December 2014

'UITextAlignmentCenter' is deprecated: first deprecated in iOS 6.0



label.textAlignment = UITextAlignmentCenter; //warning gives in it
To solve that issue
In iOS6 and above  we can use 
label.textAlignment = NSTextAlignmentCenter;//simply replace UITextAlignmentCenter by NSTextAlignmen

No comments:

Post a Comment