新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > iOS開(kāi)發(fā)常用的第三方類(lèi)庫(kù)

iOS開(kāi)發(fā)常用的第三方類(lèi)庫(kù)

作者: 時(shí)間:2016-10-08 來(lái)源:網(wǎng)絡(luò) 收藏
[weakSelf insertRowAtTop];
}];
// 設(shè)置上拉加載更多
[self.tableView addInfiniteScrollingWithActionHandler:^{
[weakSelf insertRowAtBottom];
}];
}
- (void)viewDidAppear:(BOOL)animated {
[tableView triggerPullToRefresh];
}
- (void)insertRowAtTop {
// 獲取數(shù)據(jù)....
// 停止動(dòng)畫(huà)
[self.tableView.pullToRefreshView stopAnimating];
}
- (void)insertRowAtBottom {
// 獲取數(shù)據(jù)....
// 停止動(dòng)畫(huà)
[weakSelf.tableView.infiniteScrollingView stopAnimating];
}

CMPopTipView 提示信息

本文引用地址:http://2s4d.com/article/201610/305920.htm

GitHub:https://github.com/chrismiles/CMPopTipView

CMPopTipView用于在一些視圖上顯示提示信息:

1
2
3
4
5
6
7
8
9
10
self.tipView = [[CMPopTipView alloc] initWithMessage:@提示消息];
self.tipView.delegate = self;
[self.tipView presentPointingAtView:anyButton inView:self.view animated:YES];// 點(diǎn)擊按鈕顯示
[self.tipView presentPointingAtBarButtonItem:barButtonItem animated:YES];// 點(diǎn)擊導(dǎo)航欄按鈕顯示
#pragma mark CMPopTipViewDelegate methods
- (void)popTipViewWasDismissedByUser:(CMPopTipView *)popTipView {
// 清理資源
self.tipView = nil;
}

PrettyKit

GitHub:https://github.com/vicpenap/PrettyKit


上一頁(yè) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 下一頁(yè)

關(guān)鍵詞:

評(píng)論


相關(guān)推薦

技術(shù)專(zhuān)區(qū)

關(guān)閉