日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

UITableViewCell 设置

發布時間:2025/3/15 编程问答 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 UITableViewCell 设置 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

選中cell

//選中第一分區的第一個cell 也可指定其它 cell

[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionNone];

//取消選中狀態

[tableView deselectRowAtIndexPath:indexPath animated:NO];

cell 顏色

1.系統默認的顏色設置

1 //無色 2 cell.selectionStyle=UITableViewCellSelectionStyleNone; 3 //藍色,也就是系統默認的顏色 4 cell.selectionStyle=UITableViewCellSelectionStyleBlue; 5 //灰色 6 cell.selectionStyle=UITableViewCellSelectionStyleGrap;

2.自定義UITableViewCell選中后的背景顏色和背景圖片

1 UIColor* color=[[UIColor alloc]initWithRed:50/255.0 green:50/255.0 blue:50/255.0 alpha:1];//通過RGB來定義顏色
2 cell.selectedBackgroundView=[[UIView alloc]initWithFrame:cell.frame]autorelease];
3 cell.selectedBackgroundView.backgroundColor=[UIColor ***]或color;
4 自定義選中后的背景圖片 6 cell.selectedBackgroundView=[[[UIImageView alloc]initWithImage:[UIImage imageNamed:@"backimg.png"]]autorelease];
5 設置UITableViewCell中的字體顏色時用 8 cell.textLabel.highlightedTextColor=[UIColor **color];

3.定義UITableViewCell的樣式

??

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

accessoryType有如下幾種

typedef enum {UITableViewCellAccessoryNone,UITableViewCellAccessoryDisclosureIndicator,UITableViewCellAccessoryDetailDisclosureButton,UITableViewCellAccessoryCheckmark } UITableViewCellAccessoryType;

Cell分隔

1.隱藏UITableViewCell的分隔線

? ??[chatTableView?setSeparatorStyle:UITableViewCellSeparatorStyleNone];

UITableViewCellSeparatorStyle有如下幾種? typedef enum {UITableViewCellSeparatorStyleNone,UITableViewCellSeparatorStyleSingleLine,UITableViewCellSeparatorStyleSingleLineEtched } UITableViewCellSeparatorStyle;

2.設置UITableViewCell之間分隔線的顏色

?[chatTableViewsetSeparatorColor:[UIColor?blueColor]];

轉載于:https://www.cnblogs.com/wei8/p/3205042.html

總結

以上是生活随笔為你收集整理的UITableViewCell 设置的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。