1
1
mirror of https://github.com/robb/Cartography.git synced 2024-10-06 13:37:53 +03:00

Added missing import for tvOS

Every other `import UIKit` has this except for this file.
Because of this Cartography is failing to build on tvOS.
This commit is contained in:
Javier Soto 2020-04-26 19:19:39 -07:00
parent f43d3de636
commit 75f02c4835

View File

@ -7,7 +7,7 @@
//
import Foundation
#if os(iOS)
#if os(iOS) || os(tvOS)
import UIKit
#endif