下拉刷新

发布于 2024-11-19 05:10:59 字数 335 浏览 3 评论 0原文

我想在我的应用程序中实现“下拉​​刷新”。就像 Twitter 在他们的 iPhone 应用程序中一样。

在此处输入图像描述

我找到了一个很好的源代码: PullDownToRefresh 但人们说他们拥有它的版权或某种程度?请问有人可以澄清一下吗?

另外,有谁知道这个下拉刷新有什么好的教程吗?

谢谢。

I would like to implement a "Pull down to refresh" into my application. Just like twitter has in their iPhone app.

enter image description here

I have found a good source code: PullDownToRefresh but people are saying that they have copyrighted it or somewhat? Please could anyone clarify?

And also, does anyone know of any good tutorials for this pull down to refresh?

Thanks.

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

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

发布评论

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

评论(4

依 靠 2024-11-26 05:10:59

Tweetie 的原始开发者 Loren Brichter 有一个 关于拉动刷新方法的专利,但表示不会强制执行任何费用。

我没有与任何图书馆合作过,我总是推出自己的版本,这并不困难。

The orignal developer of Tweetie, Loren Brichter, has a patent on the Pull To Refresh method, but said not to enforce eny fees.

I've not worked with any of the libraries out there, i've always rolled my own version, its not that difficult.

手心的温暖 2024-11-26 05:10:59

我刚刚遇到相同的代码。看看吧。
它的作用与 Twitter 刷新功能相同。完全一样。尝试一下。就像魅力一样。

就在这里

I just got encountered with the same code. Have a look.
It does the same as twitter refresh functionality. Exactly the same. Try it. Works like a charm.

here it goes

舞袖。长 2024-11-26 05:10:59

Facebook 团队还为他们的 Three20 项目制作了下拉刷新...。您可以在 此处的 GitHub 下载它。您可以使用该库,没有任何版权问题。

A Pull down to refresh... was also made by Facebook team for their Three20 project. You can download it here, on GitHub. You can use this library without any copyright issues.

挽袖吟 2024-11-26 05:10:59

在视图控制器中使用此代码

  - (id<UITableViewDelegate>)createDelegate {
        NSLog(@"Creating Table Delegate for Auto Refresh");
        return [[[TTTableViewDragRefreshDelegate alloc] initWithController:self] autorelease];
    }

Use this code in view controller

  - (id<UITableViewDelegate>)createDelegate {
        NSLog(@"Creating Table Delegate for Auto Refresh");
        return [[[TTTableViewDragRefreshDelegate alloc] initWithController:self] autorelease];
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文