The*_*imp 9 settings ios inappsettingskit
我刚刚下载了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];
Run Code Online (Sandbox Code Playgroud)
检查MainViewController.m示例应用程序以获取呈现它的不同方式(导航推送,tabBarItem等).
| 归档时间: |
|
| 查看次数: |
4050 次 |
| 最近记录: |