搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
小小林熬夜学编程
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
轻松与朋友组队!幻兽帕鲁Palworld联机服务器搭建
2
YoloV8的安装和训练_yelov5和v8能同时安装吗
3
CSS基础知识总结
4
Hive调优及原理分析_hive调优小表join大表的原理
5
微服务:通信协议:Restful,RPC(Dubbo、Motan、gRPC)_rpc amqp或者http service
6
每天一个知识点 - 常用设计模式
7
新版vscode remote ssh不兼容老系统 (waiting for server log)
8
oracle 设置权限 禁止删除用户
9
第十二章 Linux——日志管理
10
C语言——O/动态内存管理
当前位置:
article
> 正文
-- tableView的cell背景设置为透明时,文字会重叠在一起 -_eltable背景透明造成文字重叠
作者:小小林熬夜学编程 | 2024-02-19 09:00:57
赞
踩
eltable背景透明造成文字重叠
--
tableView的cell背景设置为透明时,文字会重叠在一起
-
http://www.cocoachina.com/bbs/simple/?t30484.html
tableView的cell背景设置为透明时,文字会重叠在一起
我把tableView里面的背景色设置为clearColor时,如果cell的行数超过一页的话,拖动时,发现里面的文字会出现重影,
本来已经被刷新的文字没有消失,和新的显示的文字重叠在一起。有没有什么办法去掉以前的文字?
ajuncgpcqz
2010-08-27 09:31
大家没碰到类似的问题吗
buan
2010-08-27 10:30
static NSString *SimpleTableIdentifier =
@"SimpleTableIdentifier"
;
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
NSInteger section=[indexPath section];
if(cell==nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:
@"SimpleTableIdentifiers"
] autorelease];
}
以前我也碰到过这样的情况,你tableView里面肯定还有其他的控件吧
ajuncgpcqz
2010-08-27 15:22
是啊,里面有几个label和button
不过问题我已经解决了,解决方法如下:
-(UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *RootViewControllerCell=@"RootViewControllerCell";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:RootViewControllerCell];
if(cell==nil)
{
cell=[[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:RootViewControllerCell] autorelease];
CGRect textValueRect=CGRectMake(90, 15, 150, 40);
UILabel *textValue=[[UILabel alloc]initWithFrame:textValueRect];
textValue.textColor=[UIColor whiteColor];
textValue.tag=NameValueTag;
textValue.backgroundColor=[UIColor clearColor];
textValue.font=[UIFont boldSystemFontOfSize:18];
[cell.contentView addSubview:textValue];
[textValue release];
}
NSUInteger row=[indexPath row];
UILabel *textName=(UILabel *)[cell.contentView viewWithTag:NameValueTag];
textName.text=[listData objectAtIndex:row];
return cell;
}
要把label的定义部份放在if里面,这样就不会重复刷新了
r78z
声明:
本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:
https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/113823
推荐阅读
article
el
table
列头不
换行
内容自适应
_
el
-
table
表头
不
换行
...
/ 重点:获取 span 最小宽度,设置当前列,注意这里加了 20,字段较多时还是有挤压,且渲染后的 div 内左右 p...
赞
踩
article
el
ement
el
-
s
el
ect
+
el
-
checkbox
多选
实现
二级联动单个选项禁用效果以及选中选...
el
ement
el
-
s
el
ect
+
el
-
checkbox
多选
实现
下拉框二级联动+禁用单个选项+选中选项对应表头高亮。_...
赞
踩
article
python
开发元胞自动机之
Game
of
Life
_
python
cell
object
does...
python
开发元胞自动机之
Game
of
Life
一、
Game
of
Life
生命游戏1. 简介2. 游戏规则二、实...
赞
踩
article
elementUI
中表格中出现分割线解决办法_
eltable
header
-
cell
-
style
列...
设置全局样式为.el-table__fixed-right{ height: 100% !important;}_elt...
赞
踩
article
Element
UI
Table
常用使用
方法
(
header
-
cell
-
style
;表头中的全选框取消...
当没有做互斥单选操作,此时需要在请求到的数组中拿出
勾选
的数组this.tableData.filter过滤拿到的是ava...
赞
踩
article
el
-
table
表头无法居中显示(使用了
c
el
l
-
style
和
header
-
c
el
l
-
style
属性...
el
-
table
表头无法居中显示(使用了
c
el
l
-
style
和
header
-
c
el
l
-
style
属性,也没有
效果
)---...
赞
踩
article
element
table
更改表头 表格样式_
header
-
cell
-
style
color
无效果...
table :data="popContentR" :
header
-
cell
-
style
="{ ...
赞
踩
article
ElementPlus修改表头及表格样式外加去除表格边框_
element
plus
header
-c...
一行代码直接消除ElementPlus中el-table的边框问题_
element
plus
header
-
cell
-s...
赞
踩
article
element
ui表格
header
-
cell
-
style
样式不生效?
_
header
-
cell
-st...
原来
header
-
cell
-
style
要写在border前面呀!
_
header
-
cell
-
style
无
效果
header
...
赞
踩
article
class
=“
el
-
table
__
expanded
-c
el
l“ 怎么设置样式...
class
="
el
-
table
__
expanded
-c
el
l"是Element UI中的一个组件,原本组件中的样式不符合...
赞
踩
article
Vue+
el
-
table
表格
边框
的
颜色
改变_
vue
el
table
边框
颜色
...
// 1.修改每行的背景色为透明色.
el
-
table
th,.
el
-
table
tr { // background: ...
赞
踩
article
<
e
m>
e
l
e
m>-<
e
m>tabl
e
e
m> 控制<
e
m>c<
e
m>
e
l
e
m>l
e
m>的上下
移动
_
e
-<
e
m>tabl
e
e
m> <
e
m>c<
e
m>
e
l
e
m>l
e
m> 滑动...
近期在项目中遇到了要将表格<
e
m>c<
e
m>
e
l
e
m>l
e
m>进行上下
移动
的需求,于是乎来记录一下功能的实现过程具体的需求效果是在表格的<
e
m>c<
e
m>
e
l
e
m>l
e
m>上通...
赞
踩
相关标签
html
javascript
css
vue.js
elementui
python
ui
前端