Hi,
I'm using the StoreProductViewController to display my games page and my publisher page, but i have several issues.
When i open the Publisher page on the iPad and tap one of the icon, the whole view becomes unresponsive to any further touches and
i need to kill the app. On iPhone when i tap an icon the screen turns black and i have to kill the app.
The Apps page on iPhone/iPad works as expected. But when i open the Publisher page after i opened the Apps page, it loads the App page instead of the Publisher page.
I'm building for iOS 6.1 and testing on iOS 7.0.4
public void ShowMoreGames()
{
GameObject.Find("StoreProductView").GetComponent().LoadProduct(myPublisherPageID);
GameObject.Find("StoreProductView").GetComponent().Show();
}
public void ShowRateGame()
{
GameObject.Find("StoreProductView").GetComponent().LoadProduct(myGamesPageID);
GameObject.Find("StoreProductView").GetComponent().Show();
}
↧