Three20 Launcher 添加项目有帮助吗? - iPhone SDK

发布于 2024-10-31 09:05:57 字数 257 浏览 5 评论 0原文

我正在使用 Three20 启动器在我的应用程序中获得主屏幕的感觉。我刚刚实现了基本的启动器。我有两件事想要完成。

首先,我希望用户在不同的视图控制器中推送 UIButton 或其他内容,以便在启动器中添加 TTViewController 和项目,我将如何做到这一点?

其次,我想知道如何创建一个视图,让用户可以添加所有信息以在启动器中添加自己的项目?这并不像第一件事那么必要。

我真的很想了解其中的一些内容并加深我对 Three20 启动器的了解。

I am using the three20 launcher to get a homescreen feel in my app. I just implemented the basic launcher. I have two things that I want to accomplish.

First off, I would like the user to push a UIButton or whatever in a DIFFERENT view controller that the TTViewController and an item be added in the launcher, how would I do this?

Secondly I would like to know how you could do a view where the user could add all the information to add their own item in the launcher? This isn't as necessary as the first thing.

I would really like to know some of this and deepen my knowledge in the three20 launcher.

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

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

发布评论

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

评论(1

冰之心 2024-11-07 09:05:57

只需为视图控制器设置一种与启动器对话的方式,可以通过委托、通知或任何您想要的方式,然后添加如下项目:

TTLauncherItem *item = [[TTLauncherItem alloc] initWithTitle:@"title"
                                                       image:@"http://imageURL"
                                                         URL:@"http://URL"
                                                   canDelete:YES];  
[_launcherView addItem:item animated:YES];
[item release];

Just setup a way for your view controller to talk to the launcher, either by delegation, notifications or whatever you want, then add the item like this:

TTLauncherItem *item = [[TTLauncherItem alloc] initWithTitle:@"title"
                                                       image:@"http://imageURL"
                                                         URL:@"http://URL"
                                                   canDelete:YES];  
[_launcherView addItem:item animated:YES];
[item release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文