TYPagerController
TYPagerController copied to clipboard
page scroll view and controller,simple,high custom,and have many tabBar styles,,support Objective-C and swift
在UITableView里想要左滑出现删除按钮。但是目前左滑是切换了控制器。有看到其它人提的信息,但是我只是当前这个页面想禁止滑动切换控制器而已。
tabbar上没选中的标题会隐藏
滑动字体问题修复
页面从上到下依次是 header、tab、controller,所有controller共用一个header,就像美团商家页面那样的效果
页面从上到下依次是 header、tab、controller,所有controller共用一个header,就像美团商家页面那样的效果 可以有时间写下这个功能吗?拜托
与父视图手势冲突
,push进一个页面,想要滑动到最左边后执行父视图的手势
当往左滑动(从后往前切换)的时候,会多次走到viewwilldisappear方法。
设置了normalTextFont为14,selectedTextFont为23,一下子显示的都不是设置的字体了,有这个bug
``` self.title = @"TabPagerControllerDemoController"; self.tabBarHeight = 50; self.tabBar.contentInset = UIEdgeInsetsMake(0, 50, 0, 50); self.tabBar.layout.barStyle = TYPagerBarStyleProgressView; // self.tabBar.layout.cellWidth = CGRectGetWidth(self.view.frame)/3; self.tabBar.layout.cellSpacing = 0; self.tabBar.layout.cellEdging = 0; self.tabBar.layout.adjustContentCellsCenter = YES; self.dataSource...