如何禁用 UITableView 的高亮选取
1个回答
推荐于2016-10-22 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517199
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
在自定义的cell里:
import "NewsTableViewCell.h"
@implementation NewsTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
newsType = 0;
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
[self addTitleLabel];
[self addConmentCountLabel];
[self addDateLabel];
[self addNewsImage];
[self setBackgroundView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"headview_cell_background.png"]]autorelease]];
[self setSelectedBackgroundView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"headview_cell_background_selected.png"]]autorelease]];
[[self textLabel] setBackgroundColor:[UIColor clearColor]];
}
return self;
}
import "NewsTableViewCell.h"
@implementation NewsTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
newsType = 0;
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
[self addTitleLabel];
[self addConmentCountLabel];
[self addDateLabel];
[self addNewsImage];
[self setBackgroundView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"headview_cell_background.png"]]autorelease]];
[self setSelectedBackgroundView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"headview_cell_background_selected.png"]]autorelease]];
[[self textLabel] setBackgroundColor:[UIColor clearColor]];
}
return self;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询