Tag: aqgridview

从XIB加载AQGridViewCell(不工作)

我正在使用AQGridView类,我想从XIB加载单元格。 我已经像UITableView的自定义单元格一样设置了XIB ,但是当我尝试加载单元格时,它仅仅是空白的。 我想知道是否有更简单的方法来获取XIB加载。 AQGridViewCell 需要从xib载入单元格 – (AQGridViewCell *) gridView: (AQGridView *) gridView cellForItemAtIndex: (NSUInteger) index { static NSString * CellIdentifier = @"cellID"; gridCell * cell = (gridCell *)[gridView dequeueReusableCellWithIdentifier: CellIdentifier]; if ( cell == nil ){ gridCell = [[gridViewCell alloc] initWithFrame: CGRectMake(0,0,_gridView.frame.size.width/2-4, _gridView.frame.size.height/2-8) reuseIdentifier:CellIdentifier]; cell = gridCell; self.gridCell = nil; } cell.title = @"Test […]