如何查看我的应用正在运行的平台(Windows / Windows Phone)?
答案 0 :(得分:6)
VersionInfo | versionInfo property应该有助于检查平台信息。
self.wholeScreenButton.superView.bringSubviewToFront(self.wholeScreenButton)
答案 1 :(得分:2)
是的,您可以使用编译器指令
#if WINDOWS_PHONE
//some code
#endif
#if WINDOWS
//some code
#endif