我正在尝试使用新的外观 API 自定义 UIButton 中标题标签的外观,但没有找到任何可行的方法。似乎以下代码应该可以工作:
[[UILabel appearanceWhenContainedIn:[UIButton class], nil] setShadowOffset:CGSizeMake(0, 2)];
[[UILabel appearanceWhenContainedIn:[UIButton class], nil] setFont:[UIFont fontWithName:@"HelveticaNeue-CondensedBold" size:17]];
但我认为 UILabel 实际上并不是按钮的子视图。有任何想法吗?