iPhone 应用程序的演练/工具提示/演示

发布于 2024-12-02 08:31:23 字数 206 浏览 2 评论 0原文

我有一款吸引老年人的应用程序。界面很简单,但有一些自定义控件,其中简单的图形并不完全不言自明(例如保存到播放列表,按流派排序)。

我见过很多具有出色的首次运行演练的应用程序(示例此处),但不知道是否有那里有一些现有的图书馆。

欢迎您提出建议。

I've got an app that appeals to an older demographic. The interface is simple but with some custom controls where a simple graphic is not completely self explanatory (save to playlist, sort by genre for example).

I've seen plenty of apps with great first run walkthroughs (examples here) but don't know if there are some existing libraries out there.

Your suggestions are welcome.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半寸时光 2024-12-09 08:31:23

我发现 CMPopTipView 虽然它不完全符合我的需求,但可能对那些正在寻找的人有用时不时地弹出一个工具提示。

I found CMPopTipView that, while it doesn't fit my needs completely may be of use to those that are looking to pop a tool tip every now and then.

七婞 2024-12-09 08:31:23

大多数覆盖/演练可以通过向应用程序的主窗口添加子视图来完成。有一些边缘情况需要考虑,但在大多数情况下,您需要简单地获取对关键窗口的引用,

UIWindow* keyWindow;

keyWindow = [UIApplication sharedApplication].keyWindow;

将您的覆盖视图添加为子视图:

[keyWindow addSubview:anOverlayView];

然后 点击手势识别器。

Most of these overlays/walkthroughs can be accomplished by adding a subview to the main window of your app. There are some edge cases to take into account, but for the most part, you need to simply grab a reference to the key window with

UIWindow* keyWindow;

keyWindow = [UIApplication sharedApplication].keyWindow;

You then would add your overlay view as a subview with:

[keyWindow addSubview:anOverlayView];

Handling taps to dismiss the overlay can be done with a tap gesture recognizer.

貪欢 2024-12-09 08:31:23

如果您希望创建在浏览器和移动设备上运行的点击演示,AppDemoStore 是正确的选择给你的工具。您只需上传一些相关的应用程序屏幕截图,添加屏幕之间导航的热点和注释以进行解释。只需几分钟,而且免费。
问候,
丹尼尔

If you are looking to create a click-through demo which runs in the browser and on mobile devices, AppDemoStore is the right tool for you. You just have to upload some relevant app screenshots, add hotspots for the navigation between the screens and callouts for explanations. It takes only a couple of minutes and it's free.
Regards,
Daniel

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文