ios stuff

This commit is contained in:
Vladislav Khorev 2013-11-24 09:54:59 +00:00
parent fa0ec572c4
commit 20f34d89f0
2 changed files with 10 additions and 0 deletions

View File

@ -25,5 +25,7 @@ void IosSwitchToScreen();
void ShowKeyboard(std::string text);
void HideKeyboard();
bool IsIpad();
} //namespace SE

View File

@ -82,6 +82,14 @@ void SetKeyboardText(const char* newText)
//GuiManagerSetKeyboardText(newText);
//NSLog(@"text: %s", newText);
}
bool IsIpad()
{
if ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad )
{
return YES; /* Device is iPad */
}
}
} //namespace SE