if let attributes: AnyObject = [
NSForegroundColorAttributeName: UIColor.white,
NSFontAttributeName: UIFont(name: "AvenirNext-Bold", size: 16)!
] as AnyObject? {
self.navigationController?.navigationBar.titleTextAttributes = attributes as? [String : AnyObject]
}
Şimdi yukarıdaki ilk satırda şu uyarı geliyor:
Non-optional expression of type 'AnyObject' used in a check for optionals
Nasıl düzeltebilirim? Teşekkürler.