在我的appDelegate中,我正在设置:
public class SenderEvent
{
public void DataSender(string data, string eventhubname)
{
var eventhubclient = EventHubClient.CreateFromConnectionString(ConstFile.eventHubConnectionString, eventhubname);
EventData data1 = new EventData(Encoding.UTF8.GetBytes(data));
eventhubclient.Send(data1);
}
稍后,我正在设置UIAlertController的tintColor,以便它显示的按钮是蓝色的,如下所示:
UIView.appearance().tintColor = UIColor.redColor()
在iPhone设备上,按钮按预期为蓝色。但是,在iPad上,按钮是红色的。为什么tintColor不会仅在iPad设备上被覆盖?