我刚刚下载了InAppSettingsKit,并尝试将其与我的应用程序集成,但是由于找不到任何可帮助我的文档,因此遇到了一些问题。到目前为止,我已经完成了以下步骤...
在这一点上,我不确定要做什么。如果有人可以提供一些有关如何集成此功能的步骤,那将非常有帮助,因为我无法在线找到任何最新文档。
最佳答案
通常,您不需要2。您只需配置一个按钮操作即可显示IASKAppSettingsViewController
。可能看起来像这样(在本例中为模式演示):
appSettingsViewController = [[[IASKAppSettingsViewController alloc] initWithNibName:@"IASKAppSettingsView" bundle:nil] autorelease];
appSettingsViewController.delegate = self;
appSettingsViewController.showDoneButton = YES;
UINavigationController *aNavController = [[[UINavigationController alloc] initWithRootViewController:appSettingsViewController] autorelease];
[self presentModalViewController:aNavController animated:YES];
在示例应用程序中检查
MainViewController.m
以其他方式呈现它(导航推送,tabBarItem等)。