Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的用户界面中有一个 UITABLEVIEW
列表是黑色的,它的列表选择器是灰色的 我希望列表选择器是黑色或透明的
我找不到控制它的属性
这是什么属性?
UITableViewCell selectionStyle财产
UITableViewCell selectionStyle
在里面
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法添加
cell.selectionStyle = UITableViewCellSelectionStyleNone;
为了使选择透明。
我希望它有所帮助。