我刚刚下载了InAppSettingsKit,我正在尝试将它与我的应用程序集成,但我遇到了一些问题,因为我找不到任何文档可以帮助我。到目前为止,我已经完成了以下步骤......
此时我已经陷入困境,因为我不确定需要做什么。如果有人可以提供一些如何整合它的步骤,那将非常有用,因为我无法在线找到任何最新文档。
答案 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等)。