詳解IOS UITableViewCell 的 imageView大小更改
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供烏拉特前網(wǎng)站建設(shè)、烏拉特前做網(wǎng)站、烏拉特前網(wǎng)站設(shè)計、烏拉特前網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、烏拉特前企業(yè)網(wǎng)站模板建站服務(wù),十載烏拉特前做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
實例代碼:
- (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; }
以上就是關(guān)于IOS UITableViewCell 的 imageView大小更改的實例,本站還有很多關(guān)于IOS 開發(fā)的文章,歡迎大家搜索參閱,
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!