IOS7上呈現IOS6的水滴刷新效果

IOS7上呈現IOS6的水滴刷新效果  

 到了IOS7 發現自帶的刷新 再也不是 IOS6自帶的水滴效果了 你是否懷念那IOS6的效果呢?
哈哈,因而收集各方資料,整理編寫一個屬於本身的水滴刷新效果 呵呵
 集成簡要代碼以下
_headView=[[HeadRefreshView alloc]initWithScrollView:_tableView pullText:@"下拉->獲取新數據" refreshingText:@"J先生正在努力加載..."];
    _headView.teardropType=TeardropTypeHead;
    _headView.block=^(HeadRefreshView * head)
    {
        [head performSelector:@selector(endRefresh) withObject:nil afterDelay:3 inModes:[NSArray arrayWithObject:NSRunLoopCommonModes]];
    };
    [_tableView addSubview:_headView];

pullDownpullUp

還有一個特大號的加載提示 哈哈
 集成簡要代碼以下
activityIndicator=[[WYActivityIndicatorView alloc]initWithFrame:self.view.bounds];
// 是否顯示中間的中止按鈕    
     [activityIndicator mayStop:NO];
// 是否開啓動畫
    [activityIndicator startAnimating];
    
    activityIndicator.textLabel.text=[NSString stringWithFormat:@"J先生->第%i行->loading...",row];
    activityIndicator.textLabel.textAlignment=NSTextAlignmentCenter;
    
    activityIndicator.stopButtonClickBlock=^(WYActivityIndicatorView *activityIndicatorView)
    {
        [activityIndicatorView stopAnimating];
    };

loading
下載地枝
http://download.csdn.net/detail/langyuejing/6707183
相關文章
相關標籤/搜索