如何集成InAppSettingsKit?

时间:2011-10-09 16:42:03

标签: ios settings inappsettingskit

我刚刚下载了InAppSettingsKit,我正在尝试将它与我的应用程序集成,但我遇到了一些问题,因为我找不到任何文档可以帮助我。到目前为止,我已经完成了以下步骤......

  1. 我将InAppSettingsKit目录添加到我的Xcode项目中。
  2. 我为我的设置创建了一个新的UIViewController类(我命名为settingViewController)。
  3. 此时我已经陷入困境,因为我不确定需要做什么。如果有人可以提供一些如何整合它的步骤,那将非常有用,因为我无法在线找到任何最新文档。

1 个答案:

答案 0 :(得分:8)

通常,您不需要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等)。