【发布时间】:2016-02-22 16:26:42
【问题描述】:
当UILabels 出现在UIAlertControllers 中时,我有这段代码可以改变它们的外观:
UILabel *appearanceLabel = [UILabel appearanceWhenContainedInInstancesOfClasses:@[[UIAlertController class]]];
[appearanceLabel setAppearanceFont:kFontRegular(18)];
但这也会影响出现在UIActivityViewControllers 中的UILabel。
如何排除 UIActivityViewController 中的 UILabel?
【问题讨论】:
标签: ios uilabel uialertcontroller uiappearance