在cell上自定義button骨杂,如何根據(jù)button獲取cell所在位置
思路就是獲取button的父視圖腊尚,然后確定位置
OrderCollectionViewCell *cell =(OrderCollectionViewCell *)[[button superview] superview];
NSIndexPath * path = [self.tableVIew indexPathForCell:cell];
NSInteger cellIndex = [path row];
如何實現(xiàn)類似美團外賣頁面的分割視圖
最直接方法使用蘋果自帶控件 UISplitViewController(分割視圖),或者全部使用button枪眉,點擊切換數(shù)據(jù)源
如何使用tabbar上小紅點提示功能
使用方法
//開啟小紅點
self.tabBarItem.badgeValue = @“0”;
//如果需要改變狸驳,在改變的地方添加如下代碼
self.tabBarController.tabBar.items[ 填寫items的位置(從0開始計算)].badgeValue = @"相對于的數(shù)量";