You can try to mimic it using shadowColor and shadowOffset.
I have done it in black for example using code like the following:
label.shadowColor = [UIColor whiteColor];
label.shadowOffset = CGSizeMake(1, 1);
By messing with the colors and shadow combinations, you can mimic the label pretty well.