我使用自定义视图在导航栏上设置 UIButton。
但按钮上的文字如下:
不像默认的按钮文字那样清晰。
我试图在按钮上添加另一个标签,但似乎失败了。
我也绑定了这样的代码,但似乎也不起作用。
doneButton.titleLabel.layer.shadowColor = [UIColor blackColor].CGColor;
doneButton.titleLabel.layer.shadowOffset = CGSizeMake(0, -1.0);
我使用自定义视图在导航栏上设置 UIButton。
但按钮上的文字如下:
不像默认的按钮文字那样清晰。
我试图在按钮上添加另一个标签,但似乎失败了。
我也绑定了这样的代码,但似乎也不起作用。
doneButton.titleLabel.layer.shadowColor = [UIColor blackColor].CGColor;
doneButton.titleLabel.layer.shadowOffset = CGSizeMake(0, -1.0);
这些代码运行良好。
button.titleLabel.font = [UIFont boldSystemFontOfSize:[UIFont smallSystemFontSize]];
button.titleLabel.textColor = [UIColor whiteColor];
button.titleLabel.shadowOffset = CGSizeMake(0,-1);
button.titleLabel.shadowColor = [UIColor darkGrayColor];
我从https://github.com/boctor/idev-recipes得到它,它非常适合自定义 UI 实现。