¿Es posible incluir esquinas redondeadas en el fondo de texto atribuido?

Atribuí texto con diferentes colores de texto. Para una mejor legibilidad en el texto resaltado, uso backgroundcolor. ¿Es posible traer el efecto CALayer de las esquinas redondeadas en este Textarea? No toda el Área sino el Texto especial dentro de ella.

Mi código:

NSAttributedString *text = [[NSAttributedString alloc] initWithString:@"Highlighted Text"
                                                                          attributes:@{
                                                                                       NSFontAttributeName:            [UIFont fontWithName:@"HelveticaNeue" size:10.0f],
                                                                                       NSForegroundColorAttributeName: [UIColor lightGrayColor],
                                                                                       NSBackgroundColorAttributeName: [UIColor darkGrayColor]
                                                                                       }];

Respuestas a la pregunta(0)

Su respuesta a la pregunta