YKPageView
YKPageView copied to clipboard
翻页导航视图
第一次加载时候
第一次加载数据 cell 没有frame 那怎么加载出来啊? 滑动一次才会有数据?
想问下 如果能不能将多个controller的view 添加到相应的cell中呢,毕竟用view的话,代码会非常多,而且不好控制
如何传递参数
如果这不是首页,是子页面,如果将参数传入到当前控件,作为几个模块页面的公共参数
我在FirstTableView继承YKPageCell后 - (YKPageCell *)pageView:(YKPageView *)pageView cellForIndex:(NSInteger)index { static NSString *identifier = @"pageCell"; FirstTableView *cell = [pageView dequeueReusableCellWithIdentifier:identifier]; if (cell == nil) { cell = [[FirstTableView alloc] initWithIdentifier:identifier]; } return cell;...