Swift版本的ObjectiveC宏

时间:2015-04-09 14:20:35

标签: objective-c swift

我在ObjectiveC中使用了下面的代码并且工作但是迅速给出了错误。

#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)

帮助我获得它的Swift版本。

2 个答案:

答案 0 :(得分:4)

Swift的替代方案:

let isPad = UIDevice.currentDevice().userInterfaceIdiom == .Pad

答案 1 :(得分:1)

let isPad = UI_USER_INTERFACE_IDIOM() == .Pad