继承自CollectionViewController的菜单控制器:BINMenuController
jopen
9年前
成为“BINMenuController”的子类,实现重写两个数据源方法(必须重写!!!)
/**
- 返回在分组中的个数,子类中必须要实现 */
- (NSInteger)numberOfItemsInCollectionViewController;
/**
- 子类需实现这个方法来设置Cell 的相关属性 */
- (void)customizeCell:(BINCollectionViewCell *)cell forRow:(NSInteger)row;
至于创建示例代码如下: BINCollectionViewLayout * layout = [[BINCollectionViewLayout alloc] init]; BINCollectionViewController * viewController = [[BINCollectionViewController alloc] initWithCollectionViewLayout:layout]; layout.delegate = viewController;
若使用storyboard 或者 xib 创建 只需类型绑定即可。 之前问题已经修复,是我自己粗心大意了,谢谢大家提意见