如何设置动态生成的标签边框(不是从Interface Builder生成的)?
最佳答案
你可以做到
Label.layer.borderColor = [UIColor whiteColor].CGColor;
Label.layer.borderWidth = 4.0;
在此之前,您需要导入一个框架QuartzCore/QuartzCore.h
关于ios - 在iPhone中设置标签边框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2551748/