I\'m currently looking at a UILabel with the property addMessageLabel.layer.cornerRadius = 5.0f; On a device with iOS 7.0 installed, it has rounded corners. On a de
addMessageLabel.layer.cornerRadius = 5.0f;
yourlabelname.layer.cornerRadius = yourlabelname.frame.size.width/2; [yourlabelname setClipsToBounds:YES];
Make sure you are checking with appropriate Deployment target.