在UIAlertController上设置TintColor适用于除iPad之外的所有内容

时间:2016-10-17 18:37:32

标签: ios iphone swift ipad uialertcontroller

在我的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设备上被覆盖?

0 个答案:

没有答案