我使用Xtify的网络服务进行推送通知。他们有办法在点击时执行自定义操作,但我不确定我是否理解如何操作。基本上,我希望自定义操作允许我选择打开应用程序的选项卡。他们的联系是 http://developer.xtify.com/display/sdk/6.+Other+Implementation+Methods
我需要在app中设置什么才能在推送通知中指定哪个标签可以打开?
答案 0 :(得分:1)
首先需要使用一个方法设置一个委托,该方法可以在文档中指定的任何位置调用 -
[[XLappMgr get] setDeveloperCustomActionSelector:@selector(developerCustomActionMethod:)];
然后,您需要定义一个名为developerCustomActionMethod的方法来执行实际切换。您可以使用以下代码选择需要切换到的选项卡 -
tabBarController.selectedViewController = [tabBarController.viewControllers objectAtIndex:2]; // will select the third tab, as tabs are ranked 0,1,2,3,....