首页 > 其他 > 详细

pull to load more data

时间:2015-07-16 18:22:48      阅读:192      评论:0      收藏:0      [点我收藏+]

if ((scrollView.contentOffset.y + scrollView.frame.size.height) >= scrollView.contentSize.height)
{
if (!self.isLoadingMoreData)
{
self.isLoadingMoreData = YES;
[[self loadMoreTableViewCell] loadMoreLabel].text = @"正在载入";

if([DataUtility isNetworkReachability]) {
[self.refreshControl beginRefreshing];
[self requestNetwork];
} else {
[self showBadNetWorkAlert];
}
}
}

pull to load more data

原文:http://www.cnblogs.com/qike/p/4651753.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!