中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

詳解IOS UITableViewCell 的 imageView大小更改

發布時間:2020-09-08 02:55:57 來源:腳本之家 閱讀:361 作者:追到夢的魔術師 欄目:移動開發

詳解IOS UITableViewCell 的 imageView大小更改

實例代碼:

- (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 UITableViewCell 的 imageView大小更改的實例,本站還有很多關于IOS 開發的文章,歡迎大家搜索參閱,

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

贡觉县| 上栗县| 黔西县| 抚州市| 和平县| 桂平市| 营山县| 大埔县| 根河市| 彰化县| 罗平县| 宁强县| 福清市| 泰州市| 利川市| 博客| 秦安县| 桃园县| 北安市| 腾冲县| 青岛市| 三亚市| 乐安县| 四会市| 闽侯县| 青浦区| 德州市| 九江市| 石台县| 曲沃县| 通化市| 大庆市| 辽宁省| 紫阳县| 石屏县| 桐庐县| 嘉荫县| 永州市| 张北县| 西宁市| 嵊泗县|