IOS UITableView Cell 의 imageView 크기 변경
1380 단어 UITableViewCellimageView
인 스 턴 스 코드:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil){
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
cell.textLabel.text = [self.arrStr objectAtIndex:indexPath.row];
UIImage *img = [UIImage imageNamed:[self.arrImg objectAtIndex:indexPath.row]];
cell.imageView.image = img;
//iOS UITableViewCell imageView
CGSize itemSize = CGSizeMake(img.size.width *2/3, img.size.height *2/3);
UIGraphicsBeginImageContext(itemSize);
CGRect imageRect = CGRectMake(0.0, 0.0, itemSize.width, itemSize.height);
[cell.imageView.image drawInRect:imageRect];
cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
}
return cell;
}
이상 은 IOS UITableView Cell 의 imageView 크기 변경 에 관 한 인 스 턴 스 입 니 다.본 사 이 트 는 IOS 개발 에 관 한 글 이 많 습 니 다.참고 하 시기 바 랍 니 다.읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
귀여운 TableView 만들기 도전.작은 차! 이 도서관은 매우 편리하지 않습니까!!?? (이것을 보여주기 위해 TableView의 리셋이 3초 동안 멈췄다😇) Duumping 애니메이션을 사용했기 때문에 태엽처럼 원상태로 돌아갑니다! 압박 상태에서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.