scrollable 인 모든 행에 여러 이미지를 표시하도록 tableview를 원합니다. 이것에 대해 UITableView
과 Custom UITableViewCell
을 사용하고 있는데, 사용자 정의 tableView 셀에 여러 개의 뷰가있는 스크롤 뷰를 생성하고 있습니다. & 이미지이므로 스크롤 할 때 테이블이 부드럽게 깜박이지 않습니다. 아무도 나를 더 나은 방법으로 이것을 제안 할 수 있습니까?objective c UITableView가 사용자 정의 셀 및 뷰로 부드럽게 스크롤되지 않음
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Products table view.
ProductCustomCell *cell = (ProductCustomCell *)[tableView dequeueReusableCellWithIdentifier:@"CatelogCell"] ;//] forIndexPath:indexPath];
if (cell == nil) {
cell = [[ProductCustomCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CatelogCell"];
}
cell.productCellDelegate = self;
[cell initProperties];
[cell showProductsInScroll:catelogBundle];
}
세포를 어떻게 구성하고 있습니까? 우리에게 XIB를 보여 주겠습니까? 일부 코드? – Cyrille
셀에 표시되는 내용은 무엇입니까? 앱 번들에없는 이미지와 같이로드해야하는 콘텐츠가 있습니까? – Stavash
질문에 대한 업데이트가 있으면 수정하십시오. 거대한 코드 조각을 주석으로 게시하지 마십시오. – dandan78