Add the next line to your code:
// Swift:
originaltagLbl.layer.masksToBounds = true
// Objective C:
originaltagLbl.layer.masksToBounds = YES;
For information see this SO answer, or read documentation.
Add the next line to your code:
// Swift:
originaltagLbl.layer.masksToBounds = true
// Objective C:
originaltagLbl.layer.masksToBounds = YES;
For information see this SO answer, or read documentation.